def test_handle_message_ready_reply_with_comm_id(self): def assert_ready(msg): decoded = json.loads(msg) self.assertEqual(decoded, {'msg_type': "Ready", 'content': '', 'comm_id': 'Testing id'}) comm = Comm(None, id='Test') comm.send = assert_ready comm._handle_msg({'comm_id': 'Testing id'})
def test_handle_message_error_reply(self): def raise_error(msg): raise Exception('Test') def assert_error(msg): decoded = json.loads(msg) self.assertEqual(decoded['msg_type'], "Error") self.assertTrue(decoded['traceback'].endswith('Exception: Test')) comm = Comm(None, id='Test', on_msg=raise_error) comm.send = assert_error comm._handle_msg({})
def test_handle_message_ready_reply(self): def assert_ready(msg): self.assertEqual(json.loads(msg), { 'msg_type': "Ready", 'content': '' }) comm = Comm(None, id='Test') comm.send = assert_ready comm._handle_msg({})
def test_handle_message_ready_reply(self): def assert_ready(msg): self.assertEqual(json.loads(msg), {'msg_type': "Ready", 'content': ''}) comm = Comm(None, id='Test') comm.send = assert_ready comm._handle_msg({})