Esempio n. 1
0
 def test_dump_routing_table(self):
     """
     Ensure the routing table is dumped into a data structure that can be
     serialised into JSON.
     """
     version = get_version()
     data_dump = {
         'contacts': [
             {
                 'public_key': PUBLIC_KEY,
                 'version': version,
                 'uri': 'http://192.168.0.1:1908',
             },
         ],
         'blacklist': [BAD_PUBLIC_KEY, ]
     }
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     drog._node.routing_table.restore(data_dump)
     result = drog.dump_routing_table()
     self.assertIsInstance(result, dict)
     self.assertIn('contacts', result)
     self.assertIn('blacklist', result)
     serialised = json.dumps(result)
     self.assertIsInstance(serialised, str)
Esempio n. 2
0
 def test_dump_routing_table(self):
     """
     Ensure the routing table is dumped into a data structure that can be
     serialised into JSON.
     """
     version = get_version()
     data_dump = {
         'contacts': [
             {
                 'public_key': PUBLIC_KEY,
                 'version': version,
                 'uri': 'http://192.168.0.1:1908',
             },
         ],
         'blacklist': [
             BAD_PUBLIC_KEY,
         ]
     }
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     drog._node.routing_table.restore(data_dump)
     result = drog.dump_routing_table()
     self.assertIsInstance(result, dict)
     self.assertIn('contacts', result)
     self.assertIn('blacklist', result)
     serialised = json.dumps(result)
     self.assertIsInstance(serialised, str)
Esempio n. 3
0
 def test_join_with_peers(self):
     """
     Ensure that the join method works as expected given a valid list of
     existing contacts on the network.
     """
     version = get_version()
     data_dump = {
         'contacts': [
             {
                 'public_key': PUBLIC_KEY,
                 'version': version,
                 'uri': 'http://192.168.0.1:1908',
             },
         ],
         'blacklist': [BAD_PUBLIC_KEY, ]
     }
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = asyncio.Future()
     drog._node.join = MagicMock(return_value=result)
     drog.join(data_dump)
     drog._node.join.assert_called_once_with(data_dump)
     drog.set = MagicMock()
     result.set_result(True)
     self.event_loop.run_until_complete(result)
     drog.set.assert_called_once_with(drog.whoami['public_key'],
                                      drog.whoami)
Esempio n. 4
0
 def test_join_with_peers(self):
     """
     Ensure that the join method works as expected given a valid list of
     existing contacts on the network.
     """
     version = get_version()
     data_dump = {
         'contacts': [
             {
                 'public_key': PUBLIC_KEY,
                 'version': version,
                 'uri': 'http://192.168.0.1:1908',
             },
         ],
         'blacklist': [
             BAD_PUBLIC_KEY,
         ]
     }
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = asyncio.Future()
     drog._node.join = MagicMock(return_value=result)
     drog.join(data_dump)
     drog._node.join.assert_called_once_with(data_dump)
     drog.set = MagicMock()
     result.set_result(True)
     self.event_loop.run_until_complete(result)
     drog.set.assert_called_once_with(drog.whoami['public_key'],
                                      drog.whoami)
Esempio n. 5
0
 def test_join_no_peers(self):
     """
     Ensure a ValueError is raised if an empty list of contacts is passed
     into the join method.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     with self.assertRaises(ValueError):
         drog.join({})
Esempio n. 6
0
 def test_join_no_peers(self):
     """
     Ensure a ValueError is raised if an empty list of contacts is passed
     into the join method.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     with self.assertRaises(ValueError):
         drog.join({})
Esempio n. 7
0
 def test_whois(self):
     """
     Check that the whois method makes the appropriate request to the
     wider network.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = asyncio.Future()
     drog.get = MagicMock(return_value=result)
     pending_result = drog.whois(PUBLIC_KEY)
     drog.get.assert_called_once_with(PUBLIC_KEY, PUBLIC_KEY)
     self.assertEqual(result, pending_result)
Esempio n. 8
0
 def test_get(self):
     """
     Ensure that the node's get method works as expected.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = asyncio.Future()
     drog._node.retrieve = MagicMock(return_value=result)
     pending_result = drog.get(PUBLIC_KEY, 'foo')
     expected = construct_key(PUBLIC_KEY, 'foo')
     drog._node.retrieve.assert_called_once_with(expected)
     self.assertEqual(result, pending_result)
Esempio n. 9
0
 def test_get(self):
     """
     Ensure that the node's get method works as expected.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = asyncio.Future()
     drog._node.retrieve = MagicMock(return_value=result)
     pending_result = drog.get(PUBLIC_KEY, 'foo')
     expected = construct_key(PUBLIC_KEY, 'foo')
     drog._node.retrieve.assert_called_once_with(expected)
     self.assertEqual(result, pending_result)
Esempio n. 10
0
 def test_whois(self):
     """
     Check that the whois method makes the appropriate request to the
     wider network.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = asyncio.Future()
     drog.get = MagicMock(return_value=result)
     pending_result = drog.whois(PUBLIC_KEY)
     drog.get.assert_called_once_with(PUBLIC_KEY, PUBLIC_KEY)
     self.assertEqual(result, pending_result)
Esempio n. 11
0
def start_node(logfile, port):
    """
    Starts a local drogulus node using throw away keys, logging to the
    referenced directory and listening on the referenced port.

    Return the Process encapsulating this node.
    """
    handler = logging.FileHandler(logfile)
    f = ' '.join(['%(asctime)s', '%(processName)-10s', '%(name)s',
                 '%(levelname)-8s', '%(message)s'])
    formatter = logging.Formatter(f)
    handler.setFormatter(formatter)
    root = logging.getLogger()
    root.addHandler(handler)
    root.setLevel(logging.DEBUG)
    root.info('Starting node in new process')
    event_loop = asyncio.get_event_loop()
    connector = HttpConnector(event_loop)
    instance = Drogulus(PRIVATE_KEY, PUBLIC_KEY, event_loop, connector, port)

    def protocol_factory(connector=connector, node=instance._node):
        """
        Returns an appropriately configured NetstringProtocol object for
        each connection.
        """
        return HttpRequestHandler(connector, node)

    setup_server = event_loop.create_server(protocol_factory, port=port)
    event_loop.run_until_complete(setup_server)
    event_loop.run_forever()
Esempio n. 12
0
def start_node(logfile, port):
    """
    Starts a local drogulus node using throw away keys, logging to the
    referenced directory and listening on the referenced port.

    Return the Process encapsulating this node.
    """
    handler = logging.FileHandler(logfile)
    f = ' '.join([
        '%(asctime)s', '%(processName)-10s', '%(name)s', '%(levelname)-8s',
        '%(message)s'
    ])
    formatter = logging.Formatter(f)
    handler.setFormatter(formatter)
    root = logging.getLogger()
    root.addHandler(handler)
    root.setLevel(logging.DEBUG)
    root.info('Starting node in new process')
    event_loop = asyncio.get_event_loop()
    connector = HttpConnector(event_loop)
    instance = Drogulus(PRIVATE_KEY, PUBLIC_KEY, event_loop, connector, port)
    app = make_http_handler(event_loop, connector, instance._node)
    f = event_loop.create_server(app, '0.0.0.0', port)
    event_loop.run_until_complete(f)
    try:
        event_loop.run_forever()
    except KeyboardInterrupt:
        pass
Esempio n. 13
0
 def test_init_bespoke_port(self):
     """
     Ensure the Drogulus instance passes on the port information to its
     Node instance.
     """
     d = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop, self.connector,
                  port=9999)
     self.assertEqual(d._node.reply_port, 9999)
Esempio n. 14
0
 def test_init_with_whoami_dict(self):
     """
     Ensure that arbitrary data passed in as the whoami argument ends up
     set in the node's whoami attribute.
     """
     whoami = {
         'name': 'fred'
     }
     d = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop, self.connector,
                  whoami=whoami)
     self.assertEqual(d.whoami['public_key'], PUBLIC_KEY)
     self.assertEqual(d.whoami['version'], get_version())
     self.assertEqual(d.whoami['name'], 'fred')
Esempio n. 15
0
 def test_init(self):
     """
     Ensure the Drogulus instance is created as expected.
     """
     d = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop, self.connector)
     self.assertEqual(d.private_key, PRIVATE_KEY)
     self.assertEqual(d.public_key, PUBLIC_KEY)
     self.assertEqual(d.event_loop, self.event_loop)
     self.assertEqual(d.connector, self.connector)
     self.assertIsInstance(d._node, Node)
     self.assertEqual(d._node.reply_port, 1908)
     self.assertEqual(d.whoami['public_key'], PUBLIC_KEY)
     self.assertEqual(d.whoami['version'], get_version())
Esempio n. 16
0
 def test_set_bespoke_duplication_count(self):
     """
     Ensure the duplication count is passed into the replicate method.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = []
     for i in range(20):
         result.append(asyncio.Future())
     drog._node.replicate = MagicMock(return_value=result)
     pending_result = drog.set('foo', 'bar', duplicate=5)
     self.assertIsInstance(pending_result, list)
     self.assertEqual(1, drog._node.replicate.call_count)
     called_with = drog._node.replicate.call_args_list[0][0]
     self.assertEqual(called_with[0], 5)
     self.assertEqual(called_with[1], construct_key(PUBLIC_KEY, 'foo'))
     self.assertEqual(called_with[2], 'bar')
     self.assertIsInstance(called_with[3], float)
     self.assertEqual(called_with[4], 0.0)
     self.assertEqual(called_with[5], self.version)
     self.assertEqual(called_with[6], PUBLIC_KEY)
     self.assertEqual(called_with[7], 'foo')
     self.assertIsInstance(called_with[8], str)
Esempio n. 17
0
 def test_set(self):
     """
     Ensure a basic set operation works as expected.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = []
     for i in range(20):
         result.append(asyncio.Future())
     drog._node.replicate = MagicMock(return_value=result)
     pending_result = drog.set('foo', 'bar')
     self.assertIsInstance(pending_result, list)
     self.assertEqual(1, drog._node.replicate.call_count)
     called_with = drog._node.replicate.call_args_list[0][0]
     self.assertEqual(called_with[0], DUPLICATION_COUNT)
     self.assertEqual(called_with[1], construct_key(PUBLIC_KEY, 'foo'))
     self.assertEqual(called_with[2], 'bar')
     self.assertIsInstance(called_with[3], float)
     self.assertEqual(called_with[4], 0.0)
     self.assertEqual(called_with[5], self.version)
     self.assertEqual(called_with[6], PUBLIC_KEY)
     self.assertEqual(called_with[7], 'foo')
     self.assertIsInstance(called_with[8], str)
Esempio n. 18
0
 def test_set(self):
     """
     Ensure a basic set operation works as expected.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = []
     for i in range(20):
         result.append(asyncio.Future())
     drog._node.replicate = MagicMock(return_value=result)
     pending_result = drog.set('foo', 'bar')
     self.assertIsInstance(pending_result, list)
     self.assertEqual(1, drog._node.replicate.call_count)
     called_with = drog._node.replicate.call_args_list[0][0]
     self.assertEqual(called_with[0], DUPLICATION_COUNT)
     self.assertEqual(called_with[1], construct_key(PUBLIC_KEY, 'foo'))
     self.assertEqual(called_with[2], 'bar')
     self.assertIsInstance(called_with[3], float)
     self.assertEqual(called_with[4], 0.0)
     self.assertEqual(called_with[5], self.version)
     self.assertEqual(called_with[6], PUBLIC_KEY)
     self.assertEqual(called_with[7], 'foo')
     self.assertIsInstance(called_with[8], str)
Esempio n. 19
0
 def test_set_bespoke_duplication_count(self):
     """
     Ensure the duplication count is passed into the replicate method.
     """
     drog = Drogulus(PRIVATE_KEY, PUBLIC_KEY, self.event_loop,
                     self.connector)
     result = []
     for i in range(20):
         result.append(asyncio.Future())
     drog._node.replicate = MagicMock(return_value=result)
     pending_result = drog.set('foo', 'bar', duplicate=5)
     self.assertIsInstance(pending_result, list)
     self.assertEqual(1, drog._node.replicate.call_count)
     called_with = drog._node.replicate.call_args_list[0][0]
     self.assertEqual(called_with[0], 5)
     self.assertEqual(called_with[1], construct_key(PUBLIC_KEY, 'foo'))
     self.assertEqual(called_with[2], 'bar')
     self.assertIsInstance(called_with[3], float)
     self.assertEqual(called_with[4], 0.0)
     self.assertEqual(called_with[5], self.version)
     self.assertEqual(called_with[6], PUBLIC_KEY)
     self.assertEqual(called_with[7], 'foo')
     self.assertIsInstance(called_with[8], str)
Esempio n. 20
0
def start_node(event_loop, port):
    """
    Starts a local drogulus node using throw away keys, logging to the
    referenced directory and listening on the referenced port.

    Return the Process encapsulating this node.
    """
    connector = NetstringConnector(event_loop)
    private_key, public_key = get_keypair()
    instance = Drogulus(private_key, public_key, event_loop, connector, port)

    def protocol_factory(connector=connector, node=instance._node):
        """
        Returns an appropriately configured NetstringProtocol object for
        each connection.
        """
        return lambda: NetstringProtocol(connector, node)

    factory = protocol_factory()
    setup_server = event_loop.create_server(factory, port=port)
    event_loop.run_until_complete(setup_server)
    return instance