Ejemplo n.º 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'))
Ejemplo n.º 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'))
Ejemplo n.º 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'))
Ejemplo n.º 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)
Ejemplo n.º 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'))
Ejemplo n.º 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')
Ejemplo n.º 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')
Ejemplo n.º 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')
Ejemplo n.º 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')
Ejemplo n.º 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)
Ejemplo n.º 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'))
Ejemplo n.º 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'))
Ejemplo n.º 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'))
Ejemplo n.º 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'))