Beispiel #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'))
Beispiel #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'))
Beispiel #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'))
Beispiel #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)
Beispiel #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'))
Beispiel #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')
Beispiel #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')
Beispiel #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')
Beispiel #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')
Beispiel #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)
Beispiel #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'))
Beispiel #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'))
Beispiel #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'))
Beispiel #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'))