def test_run_keepalive(self, mock_socket, mock_time): import socket mock_socket.error = socket.error client = AprsClient(aprs_user='******', aprs_filter='') client.connect() client.sock_file.readline = mock.MagicMock() client.sock_file.readline.side_effect = [ 'Normal text blabla', KeyboardInterrupt() ] mock_time.side_effect = [ 0, 0, APRS_KEEPALIVE_TIME + 1, APRS_KEEPALIVE_TIME + 1 ] timed_callback = mock.MagicMock() try: client.run(callback=lambda msg: print("got: {}".format(msg)), timed_callback=timed_callback) except KeyboardInterrupt: pass finally: client.disconnect() timed_callback.assert_called_with(client)
def test_disconnect(self, mock_socket): client = AprsClient(aprs_user='******', aprs_filter='') client.connect() client.disconnect() client.sock.shutdown.assert_called_once_with(0) client.sock.close.assert_called_once_with() self.assertTrue(client._kill)
def test_run(self, mock_socket): import socket mock_socket.error = socket.error client = AprsClient(aprs_user='******', aprs_filter='') client.connect() client.sock_file.readline = mock.MagicMock() client.sock_file.readline.side_effect = [ 'Normal text blabla', 'my weird character ¥', UnicodeDecodeError('funnycodec', b'\x00\x00', 1, 2, 'This is just a fake reason!'), '... show must go on', BrokenPipeError(), '... and on', ConnectionResetError(), '... and on', socket.error(), '... and on', '', '... and on', KeyboardInterrupt() ] try: client.run(callback=lambda msg: print("got: {}".format(msg)), autoreconnect=True) except KeyboardInterrupt: pass finally: client.disconnect()
def test_run(self, mock_socket): import socket mock_socket.error = socket.error client = AprsClient(aprs_user='******', aprs_filter='') client.connect() client.sock_file.readline = mock.MagicMock() client.sock_file.readline.side_effect = ['Normal text blabla', 'my weird character ¥', UnicodeDecodeError('funnycodec', b'\x00\x00', 1, 2, 'This is just a fake reason!'), '... show must go on', BrokenPipeError(), '... and on', ConnectionResetError(), '... and on', socket.error(), '... and on', '', '... and on', KeyboardInterrupt()] try: client.run(callback=lambda msg: print("got: {}".format(msg)), autoreconnect=True) except KeyboardInterrupt: pass finally: client.disconnect()
def test_50_live_messages(self): print("Enter") self.remaining_messages = 50 def process_message(raw_message): if raw_message[0] == '#': return try: message = parse(raw_message) print("{}: {}".format(message['beacon_type'], raw_message)) except NotImplementedError as e: print("{}: {}".format(e, raw_message)) return if self.remaining_messages > 0: self.remaining_messages -= 1 else: raise KeyboardInterrupt client = AprsClient(aprs_user='******', aprs_filter='') client.connect() try: client.run(callback=process_message, autoreconnect=True) except KeyboardInterrupt: pass finally: client.disconnect() self.assert_(True)
def test_50_live_messages(self): print("Enter") self.remaining_messages = 50 def process_message(raw_message): if raw_message[0] == '#': return message = parse_aprs(raw_message) message.update(parse_ogn_beacon(message['comment'])) if self.remaining_messages > 0: self.remaining_messages -= 1 else: raise KeyboardInterrupt client = AprsClient(aprs_user='******', aprs_filter='') client.connect() try: client.run(callback=process_message, autoreconnect=True) except KeyboardInterrupt: pass finally: client.disconnect() self.assert_(True)
def test_run_keepalive(self, mock_socket, mock_time): import socket mock_socket.error = socket.error client = AprsClient(aprs_user='******', aprs_filter='') client.connect() client.sock_file.readline = mock.MagicMock() client.sock_file.readline.side_effect = ['Normal text blabla', KeyboardInterrupt()] mock_time.side_effect = [0, 0, APRS_KEEPALIVE_TIME + 1, APRS_KEEPALIVE_TIME + 1] timed_callback = mock.MagicMock() try: client.run(callback=lambda msg: print("got: {}".format(msg)), timed_callback=timed_callback) except KeyboardInterrupt: pass finally: client.disconnect() timed_callback.assert_called_with(client)
def test_reset_kill_reconnect(self): client = AprsClient(aprs_user='******', aprs_filter='') client.connect() # .run() should be allowed to execute after .connect() mock_callback = mock.MagicMock( side_effect=lambda raw_msg: client.disconnect()) self.assertFalse(client._kill) client.run(callback=mock_callback, autoreconnect=True) # After .disconnect(), client._kill should be True self.assertTrue(client._kill) self.assertEqual(mock_callback.call_count, 1) # After we reconnect, .run() should be able to run again mock_callback.reset_mock() client.connect() client.run(callback=mock_callback, autoreconnect=True) self.assertEqual(mock_callback.call_count, 1)