Esempio n. 1
0
    def test_create_large(self):
        # This test helped to fix a bug where we were accidentally appending an extra blank packet when creating packets
        c1 = Communicator('udp', 10001)
        l = str(list(range(550))).encode('utf-8')
        packets = c1.create_packets(l, '_get')
        self.assertEqual(len(packets), 6)

        c1.close()
Esempio n. 2
0
 def test_packet_create_single(self):
     l = []
     for i in range(100):
         l.append(i)
     c1 = Communicator('UDP', 9090)
     l = str(l).encode('utf-8')
     p1 = c1.create_packets(l, '9012')
     self.assertEqual(len(p1), 1)
     p1 = p1[0]
     c1.close()
Esempio n. 3
0
    def test_init(self):

        c1 = Communicator('UDP', 9887)
        self.assertEqual(c1.listen_port, 9887)
        self.assertEqual(c1.send_port, 9887)
        self.assertEqual(c1.is_listening, False)
        self.assertEqual(c1.listen_thread, None)
        self.assertEqual(c1.is_open, True)
        self.assertEqual(c1.mtu, comm.get_mtu())

        c1.close()
Esempio n. 4
0
    def test_close(self):
        c1 = Communicator('UDP', 9887)
        self.assertEqual(c1.is_open, True)
        self.assertEqual(c1.is_listening, False)
        self.assertNotEqual(c1.listen_sock, None)
        self.assertNotEqual(c1.send_sock, None)

        c1.close()
        self.assertEqual(c1.is_open, False)
        self.assertEqual(c1.is_listening, False)
        self.assertNotEqual(c1.listen_sock, None)
        self.assertNotEqual(c1.send_sock, None)
Esempio n. 5
0
 def test_single_packet(self):
     c1 = Communicator('udp', 8080)
     d = []
     for i in range(122):  # Exactly 500 bytes
         d.append(i)
     d = str(d).encode('utf-8')
     d = c1.create_packets(d, '1111')
     self.assertEqual(len(d), 1, 'Should have only created a single packet')
     self.assertEqual('1111', d[0][4:8].decode('utf-8'))
     self.assertEqual(0, struct.unpack('H', d[0][0:2])[0])
     self.assertEqual(0, struct.unpack('H', d[0][2:4])[0])
     c1.close()
Esempio n. 6
0
    def test_close_ops(self):
        c1 = Communicator('UDP', 80)
        c1.close()

        with self.assertRaises(BrokenPipeError):
            c1.listen()

        with self.assertRaises(BrokenPipeError):
            c1.send(bytes(), 'lol', 'test')
Esempio n. 7
0
 def test_get(self):
     # Encodes and decodes a single packet.
     c1 = Communicator('udp', 10001)
     l = str(list(range(100))).encode('utf-8')
     for packet in c1.create_packets(l, '_get'):
         c1.receive(packet, 'test')
     r = c1.get('test', '_get')
     self.assertNotEqual(r, None)
     self.assertEqual(l, r, 'Reassembled bytes should be the same.')
     c1.close()
Esempio n. 8
0
    def test_bad_init(self):
        '''Test constructors with bad parameters
        Don't need to close b/c we never actually create an object.
        '''
        with self.assertRaises(ValueError):
            c1 = Communicator('uasd', 9090)

        with self.assertRaises(ValueError):
            c1 = Communicator('udp', 90000)

        with self.assertRaises(TypeError):
            c1 = Communicator('UDP', '123')

        with self.assertRaises(ValueError):
            c1 = Communicator('udp', -1)

        with self.assertRaises(NotImplementedError):
            c1 = Communicator('tcp', 10000)
Esempio n. 9
0
 def test_mocked_send(self, mock1):
     c1 = Communicator('udp', 10001)
     self.assertEqual(
         c1.send('192.168.1.1', 'ayyy'.encode('utf-8'), 'noice'), True)
     self.assertEqual(
         c1.send('192.168.1.1', 'ayyy'.encode('utf-8'), 'noice'), False)
     self.assertEqual(
         c1.send('192.168.1.1', 'ayyy'.encode('utf-8'), 'noice'), True)
     self.assertEqual(
         c1.send('192.168.1.1', 'ayyy'.encode('utf-8'), 'noice'), False)
     c1.close()
Esempio n. 10
0
    def test_same_tag_send(self):

        c1 = Communicator('udp', 9071)
        for i in range(10):
            msg = 'Iteration: {}'.format(i).encode('utf-8')
            packets = c1.create_packets(msg, 'test')
            for packet in packets:
                c1.receive(packet, 'local')
            self.assertEqual(
                c1.get('local', 'test').decode('utf-8'), msg.decode('utf-8'))

        c1.close()
Esempio n. 11
0
 def test_large_get(self):
     # This test assures that packets split into multiple pieces and received are able to be reassembled corectly.
     c1 = Communicator('udp', 10001)
     l = str(list(range(1000))).encode('utf-8')
     # print(l)
     packets = c1.create_packets(l, '_get')
     for packet in packets:
         c1.receive(packet, 'test')
     r = c1.get('test', '_get')
     self.assertNotEqual(r, None)
     self.assertEqual(l, r, 'Reassembled bytes should be the same.')
     c1.close()
Esempio n. 12
0
def kickoff(task):
    '''The worker method for running distributed consensus.

        Args:
            task (int): The process-shared value denoting whether the taks is running or not.

        Returns
            N/A
    '''
    # This the where we would need to do some node discovery, or use a pre-built graph
    # in order to notify all nodes they should begin running
    global conf_file
    # print("Processing for 5 seconds......")
    config = ConfigParser()

    config.read(conf_file)
    port = config['consensus']['udp_port']
    c = Communicator('udp', int(port))
    c.listen()
    ####### Notify Other Nodes to Start #######
    port = config['node_runner']['port']
    for node in json.loads(config['graph']['nodes']):
        req_url = 'http://{}:{}/start/consensus'.format(node, port)
        requests.get(req_url)
    ########### Run Consensus Here ############
    time.sleep(7)
    ###########################################
    c.close()
    # print("Finished Processing")
    with task.get_lock():
        task.value = 0
Esempio n. 13
0
 def test_big_mock_send(self, mock1):
     l = str(list(range(1000))).encode('utf-8')
     c1 = Communicator('udp', 10001)
     self.assertEqual(c1.send('abc1213', l, 'big_'), True)
     mock1.return_value = -1
     self.assertEqual(c1.send('abc1213', l, 'big_'), False)
     c1.close()
Esempio n. 14
0
    def test_large_packet(self):
        c1 = Communicator('udp', 10001)
        d = []
        for i in range(1000):
            d.append(random.random())
        d = str(d).encode('utf-8')
        packs = c1.create_packets(d, 'tag1')
        r = bytes()  # total data bytes
        t = bytes()
        for packet in packs:
            # print("Packet Size: {}".format(len(packet)))
            r += packet[8:]
            t += packet

        # print(len(d))
        # print(len(r))
        self.assertEqual(len(d), len(r))
        self.assertEqual(len(d), len(t) - 8 * len(packs))
        for i in range(len(packs)):
            seq = struct.unpack('H', packs[i][2:4])[0]
            t = struct.unpack('H', packs[i][0:2])[0]
            self.assertEqual(seq, i)
            self.assertEqual(t, len(packs) - 1)
        c1.close()
Esempio n. 15
0
    def test_mock_listen(self, mock1):
        l = str(list(range(20))).encode('utf-8')
        d = struct.pack('H', 0)
        d += d
        d += 'test'.encode('utf-8')
        d += l
        mock1.return_value = (d, ('127.0.0.1', 9071))
        c1 = Communicator('udp', 9071)
        c1.listen()
        self.assertNotEqual(c1.listen_thread, None)
        self.assertEqual(c1.is_listening, True)
        c1.receive = MagicMock()
        c1.send('127.0.0.1', l, 'test')

        # Give some time for the other thread to run before checking conditions
        ctr = 0
        while mock1.called != True and c1.receive.called != True and ctr < 20:
            time.sleep(0.1)

        mock1.assert_called_with(1024)
        c1.close()
        c1.receive.assert_called_with(d, '127.0.0.1')
Esempio n. 16
0
 def test_double_close(self):
     c1 = Communicator('UDP', 9090)
     c1.close()
     with self.assertRaises(BrokenPipeError):
         c1.close()