示例#1
0
 def test_of_type_package(self):
     """Test filtering clients of type package."""
     self.assertTrue(clients.of_type(syncthing_clients, 'package'))
     self.assertFalse(clients.of_type(tor_clients, 'package'))
示例#2
0
 def test_of_type_mobile(self):
     """Test filtering clients of type mobile."""
     self.assertTrue(clients.of_type(syncthing_clients, 'mobile'))
     self.assertFalse(clients.of_type(infinoted_clients, 'mobile'))
示例#3
0
 def test_of_type_desktop(self):
     """Test filtering clients of type desktop."""
     self.assertTrue(clients.of_type(syncthing_clients, 'desktop'))
     self.assertFalse(clients.of_type(deluge_clients, 'desktop'))
示例#4
0
def clients_of_type(clients, client_type):
    """Filter and get clients of a particular type"""
    return clients_module.of_type(clients, client_type)
示例#5
0
 def test_of_type_web(self):
     """Test filtering clients of type web."""
     self.assertTrue(clients.of_type(syncthing_clients, 'web'))
     self.assertFalse(clients.of_type(quassel_clients, 'web'))
示例#6
0
def test_of_type_desktop():
    """Test filtering clients of type desktop."""
    assert clients.of_type(syncthing_clients, 'desktop')
    assert not clients.of_type(deluge_clients, 'desktop')
示例#7
0
def test_of_type_package():
    """Test filtering clients of type package."""
    assert clients.of_type(syncthing_clients, 'package')
    assert not clients.of_type(tor_clients, 'package')
示例#8
0
def test_of_type_web():
    """Test filtering clients of type web."""
    assert clients.of_type(syncthing_clients, 'web')
    assert not clients.of_type(quassel_clients, 'web')
示例#9
0
def test_of_type_mobile():
    """Test filtering clients of type mobile."""
    assert clients.of_type(syncthing_clients, 'mobile')
    assert not clients.of_type(infinoted_clients, 'mobile')
示例#10
0
def clients_of_type(clients, client_type):
    """Filter and get clients of a particular type"""
    return clients_module.of_type(clients, client_type)
示例#11
0
 def test_of_type_package(self):
     """Test filtering clients of type package."""
     self.assertTrue(clients.of_type(syncthing_clients, 'package'))
     self.assertFalse(clients.of_type(tor_clients, 'package'))
示例#12
0
 def test_of_type_desktop(self):
     """Test filtering clients of type desktop."""
     self.assertTrue(clients.of_type(syncthing_clients, 'desktop'))
     self.assertFalse(clients.of_type(deluge_clients, 'desktop'))
示例#13
0
 def test_of_type_mobile(self):
     """Test filtering clients of type mobile."""
     self.assertTrue(clients.of_type(syncthing_clients, 'mobile'))
     self.assertFalse(clients.of_type(infinoted_clients, 'mobile'))
示例#14
0
 def test_of_type_web(self):
     """Test filtering clients of type web."""
     self.assertTrue(clients.of_type(syncthing_clients, 'web'))
     self.assertFalse(clients.of_type(quassel_clients, 'web'))