"""This is a unittest for the message buss It's important to note that this requires this test to run mycroft service to test the buss. It is not expected that the service be already running when the tests are ran. """ import unittest from mycroft.messagebus.message import Message from mycroft.messagebus.client.ws import WebsocketClient from subprocess import Popen,call from threading import Thread import time class TestMessagebusMethods(unittest.TestCase): """This class is for testing the messsagebus. It currently only tests send and receive. The tests could include more. """ def setUp(self): """This sets up for testing the message buss This requires starting the mycroft service and creating two WebsocketClient object to talk with eachother. Not this is threaded and will require cleanup """ #start the mycroft service. and get the pid of the script. self.pid = Popen(["python","mycroft/messagebus/service/main.py"]).pid #delay to allow the service to start up. time.sleep(10) #Create the two web clients self.ws1 = WebsocketClient() self.ws2 = WebsocketClient() #init the flags for handler's self.handle1 = False self.handle2 = False #Start threads to handle websockets Thread(target = self.ws1.run_forever).start() Thread(target = self.ws2.run_forever).start() #Sleep to give the websockets to startup before adding handlers time.sleep(10) #Setup handlers for each of the messages. self.ws1.on('ws1.message',self.onHandle1) self.ws2.on('ws2.message',self.onHandle2) def onHandle1(self,event): """This is the handler for ws1.message This for now simply sets a flag to true when received. Args: event(Message): this is the message received """ self.handle1 = True def onHandle2(self,event): """This is the handler for ws2.message This for now simply sets a flag to true when received. Args: event(Message): this is the message received """ self.handle2 = True def tearDown(self): """This is the clean up for the tests This will close the websockets ending the threads then kill the mycroft service that was started in setUp. """ self.ws1.close() self.ws2.close() retcode = call(["kill","-9", str(self.pid)]) def test_ClientServer(self): """This is the test to send a message from each of the websockets to the other. """ #Send the messages self.ws2.emit(Message('ws1.message')) self.ws1.emit(Message('ws2.message')) #allow time for messages to be processed time.sleep(10) #Check that both of the handlers were called. self.assertTrue(self.handle1) self.assertTrue(self.handle2) class TestMessageMethods(unittest.TestCase): """This tests the Message class functions """ def setUp(self): """This sets up some basic messages for testing. """ self.empty_message = Message("empty") self.message1 = Message("enclosure.reset") self.message2 = Message("enclosure.system.blink", {'target': 4},{'target':5}) self.message3 = Message("status", "OK") # serialized results of each of the messages self.serialized = ['{"data": {}, "type": "empty", "context": null}', '{"data": {}, "type": "enclosure.reset", "context": null}', '{"data": {"target": 4}, "type": "enclosure.system.blink", "context": {"target": 5}}', '{"data": "OK", "type": "status", "context": null}'] def test_serialize(self): """This test the serialize method """ self.assertEqual(self.empty_message.serialize(),self.serialized[0]) self.assertEqual(self.message1.serialize(),self.serialized[1]) self.assertEqual(self.message2.serialize(),self.serialized[2]) self.assertEqual(self.message3.serialize(),self.serialized[3]) def test_deserialize(self): """This test's the deserialize method """ messages = [] #create the messages from the serialized strings above messages.append(Message.deserialize(self.serialized[0])) messages.append(Message.deserialize(self.serialized[1])) messages.append(Message.deserialize(self.serialized[2])) #check the created messages match the strings self.assertEqual(messages[0].serialize(),self.serialized[0]) self.assertEqual(messages[1].serialize(),self.serialized[1]) self.assertEqual(messages[2].serialize(),self.serialized[2]) def test_reply(self): """This tests the reply method This is probably incomplete as the use of the reply message escapes me. """ message = self.empty_message.reply("status","OK") self.assertEqual(message.serialize(),'{"data": "OK", "type": "status", "context": {}}') message = self.message1.reply("status","OK") self.assertEqual(message.serialize(),'{"data": "OK", "type": "status", "context": {}}') message = self.message2.reply("status","OK") def test_publish(self): """This is for testing the publish method TODO: Needs to be completed """ pass if __name__ == '__main__': """This is to start the testing""" unittest.main()