diff --git a/simulation/devices.py b/simulation/devices.py index 71cdcab..0227c11 100644 --- a/simulation/devices.py +++ b/simulation/devices.py @@ -18,7 +18,7 @@ COLOR_REMOTE = colored.fg("green") OUTPUT_ACTIVE = True -class base(mqtt_base): +class base_common(mqtt_base): AUTOSEND = True COMMANDS = [] BOOL_KEYS = [] @@ -28,9 +28,6 @@ class base(mqtt_base): self.names = {} self.commands = self.COMMANDS[:] - # - self.mqtt_client.add_callback(self.topic, self.__rx__) - self.mqtt_client.add_callback(self.topic + '/#', self.__rx__) def add_channel_name(self, key, name): self.names[key] = name @@ -110,12 +107,37 @@ class base(mqtt_base): * ' ' + self.__devicename__(), description + colored.attr("reset")) -class base_videv(base): +class base(base_common): + def __init__(self, mqtt_client, topic, default_values=None): + super().__init__(mqtt_client, topic, default_values) + self.mqtt_client.add_callback(self.topic, self.__rx__) + self.mqtt_client.add_callback(self.topic + '/#', self.__rx__) + + +class base_videv(base_common): + SET_TOPIC = "set" + RX_KEYS = [] + + def __init__(self, mqtt_client, topic, default_values=None): + super().__init__(mqtt_client, topic, default_values) + # + for key in self.RX_KEYS: + # add mqtt callbacks for RX data + self.mqtt_client.add_callback('/'.join([self.topic, key]), self.__rx__) + # add print_formatted for RX data + self.add_callback(key, None, self.print_formatted, True) + def set(self, key, data, block_callback=[]): - if key in self.keys(): - return super().set(key, data, block_callback) - else: - self.__send__(self, key, data) + self.mqtt_client.send('/'.join([self.topic, key, self.SET_TOPIC]), json.dumps(data)) + + def __rx__(self, client, userdata, message): + value = self.__payload_filter__(message.payload) + if message.topic.startswith(self.topic): + targetkey = message.topic.split('/')[-1] + if targetkey in self.keys(): + super().set(targetkey, self.__ext_to_int__(targetkey, value)) + elif targetkey != "__info__": + print("Unknown key %s in %s::%s" % (targetkey, message.topic, self.__class__.__name__)) class shelly(base): @@ -548,6 +570,8 @@ class videv_light(base_videv): KEY_COLOR_TEMP = "color_temp" KEY_TIMER = "timer" # + RX_KEYS = [KEY_OUTPUT_0, KEY_BRIGHTNESS, KEY_COLOR_TEMP, KEY_TIMER] + # STATE_COMMANDS = ("get_state", "toggle_state", ) BRIGHTNESS_COMMANDS = ("get_brightness", "set_brightness", ) COLOR_TEMP_COMMANDS = ("get_color_temp", "set_color_temp", ) @@ -580,35 +604,12 @@ class videv_light(base_videv): self.commands.extend(self.TIMER_COMMANDS) # self.timer_maxvalue = None - # add commands to be available - self.add_callback(self.KEY_OUTPUT_0, None, self.print_formatted, True) - self.add_callback(self.KEY_BRIGHTNESS, None, self.print_formatted, True) - self.add_callback(self.KEY_COLOR_TEMP, None, self.print_formatted, True) - self.add_callback(self.KEY_TIMER, None, self.print_formatted, True) - self.add_callback(self.KEY_OUTPUT_0, None, self.__send__, True) - self.add_callback(self.KEY_BRIGHTNESS, None, self.__send__, True) - self.add_callback(self.KEY_COLOR_TEMP, None, self.__send__, True) - self.add_callback(self.KEY_TIMER, None, self.__send__, True) def __ext_to_int__(self, key, data): if key in [self.KEY_BRIGHTNESS, self.KEY_COLOR_TEMP]: return int(data) return super().__ext_to_int__(key, data) - def __rx__(self, client, userdata, message): - value = self.__payload_filter__(message.payload) - if message.topic.startswith(self.topic): - targetkey = message.topic.split('/')[-1] - if targetkey in self.keys(): - self.set(targetkey, self.__ext_to_int__(targetkey, value), block_callback=(self.__send__, )) - elif targetkey != "__info__": - print("Unknown key %s in %s::%s" % (targetkey, message.topic, self.__class__.__name__)) - - def __tx__(self, keys_changed): - for key in keys_changed: - topic = self.topic + '/' + key - self.mqtt_client.send(topic, json.dumps(self[key])) - def command(self, command): try: command, value = command.split(' ') @@ -676,6 +677,8 @@ class videv_heating(base_videv): # KEY_TEMPERATURE = 'temperature' # + RX_KEYS = [KEY_USER_TEMPERATURE_SETPOINT, KEY_AWAY_MODE, KEY_SUMMER_MODE, KEY_VALVE_TEMPERATURE_SETPOINT, KEY_BOOST_TIMER] + # COMMANDS = ["get_temperature_setpoint", "set_temperature_setpoint", "toggle_away_mode", "toggle_summer_mode", "trigger_default_temperature", "trigger_boost"] @@ -688,36 +691,9 @@ class videv_heating(base_videv): self.KEY_SUMMER_MODE: False, self.KEY_BOOST_TIMER: 0 }) - self.add_callback(self.KEY_USER_TEMPERATURE_SETPOINT, None, self.print_formatted, True) - self.add_callback(self.KEY_VALVE_TEMPERATURE_SETPOINT, None, self.print_formatted, True) - self.add_callback(self.KEY_TEMPERATURE, None, self.print_formatted, True) - self.add_callback(self.KEY_AWAY_MODE, None, self.print_formatted, True) - self.add_callback(self.KEY_SUMMER_MODE, None, self.print_formatted, True) - self.add_callback(self.KEY_BOOST_TIMER, None, self.print_formatted, True) - self.add_callback(self.KEY_USER_TEMPERATURE_SETPOINT, None, self.__send__, True) - self.add_callback(self.KEY_TEMPERATURE, None, self.__send__, True) - self.add_callback(self.KEY_AWAY_MODE, None, self.__send__, True) - self.add_callback(self.KEY_SUMMER_MODE, None, self.__send__, True) # self.timer_maxvalue = None - def __rx__(self, client, userdata, message): - value = self.__payload_filter__(message.payload) - if message.topic.startswith(self.topic): - targetkey = message.topic.split('/')[-1] - if targetkey in self.keys(): - self.set(targetkey, value, block_callback=(self.__send__, )) - elif targetkey not in ["__info__", self.KEY_SET_DEFAULT_TEMPERATURE, self.KEY_START_BOOST]: - print("Unknown key %s in %s::%s" % (targetkey, message.topic, self.__class__.__name__)) - - def __tx__(self, keys_changed): - for key in keys_changed: - topic = self.topic + '/' + key - try: - self.mqtt_client.send(topic, json.dumps(self[key])) - except KeyError: - self.mqtt_client.send(topic, json.dumps(True)) - def command(self, command): try: command, value = command.split(' ') @@ -733,9 +709,9 @@ class videv_heating(base_videv): elif command == self.commands[3]: self.set(self.KEY_SUMMER_MODE, not self.get(self.KEY_SUMMER_MODE)) elif command == self.commands[4]: - self.set(self, self.KEY_SET_DEFAULT_TEMPERATURE, True) + self.set(self.KEY_SET_DEFAULT_TEMPERATURE, True) elif command == self.commands[5]: - self.set(self, self.KEY_START_BOOST, True) + self.set(self.KEY_START_BOOST, True) else: print("%s: not yet implemented!" % command) else: @@ -774,18 +750,14 @@ class videv_heating(base_videv): class videv_warnings(base): KEY_WARNING = "html_short" # + RX_KEYS = [KEY_WARNING] + # COMMANDS = [ "get_warnings", ] def __init__(self, mqtt_client, topic): super().__init__(mqtt_client, topic, dict.fromkeys([self.KEY_WARNING])) - # - self.add_callback(self.KEY_WARNING, None, self.print_formatted, True) - - def __rx__(self, client, userdata, message): - if message.topic == self.topic + "/" + self.KEY_WARNING: - self.set(self.KEY_WARNING, message.payload.decode("utf-8")) def command(self, command): if command in self.COMMANDS: diff --git a/testresults/testrun.json b/testresults/testrun.json index 7776482..aaaa476 100644 --- a/testresults/testrun.json +++ b/testresults/testrun.json @@ -1,17 +1,17 @@ { - "time_consumption": 84.72992253303528, + "time_consumption": 84.66432404518127, + "number_of_failed_tests": 0, "name": "Default Testsession name", - "number_of_tests": 67, - "number_of_possibly_failed_tests": 0, "testcase_execution_level": 90, + "number_of_successfull_tests": 67, "testcase_names": { "0": "Single Test", "10": "Smoke Test (Minumum subset)", "50": "Short Test (Subset)", "90": "Full Test (all defined tests)" }, - "number_of_successfull_tests": 67, - "number_of_failed_tests": 0, + "number_of_tests": 67, + "number_of_possibly_failed_tests": 0, "testcases": { "Power On/ Off test for device and virtual device: zigbee/ffe/diningroom/powerplug_floorlamp": { "name": "__tLogger__", @@ -27,15 +27,15 @@ "stack_info": null, "lineno": 27, "funcName": "test_power_on_off", - "created": 1675954614.326724, - "msecs": 326.7240524291992, - "relativeCreated": 222.96643257141113, - "thread": 139894075555840, + "created": 1676441603.2068624, + "msecs": 206.8624496459961, + "relativeCreated": 210.37769317626953, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Power On/ Off test for device and virtual device: zigbee/ffe/diningroom/powerplug_floorlamp", - "asctime": "2023-02-09 15:56:54,326", + "asctime": "2023-02-15 07:13:23,206", "moduleLogger": [ { "name": "smart_brain.mqtt", @@ -53,15 +53,15 @@ "stack_info": null, "lineno": 70, "funcName": "add_callback", - "created": 1675954614.3241336, - "msecs": 324.13363456726074, - "relativeCreated": 220.37601470947266, - "thread": 139894075555840, + "created": 1676441603.2054625, + "msecs": 205.46245574951172, + "relativeCreated": 208.97769927978516, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Adding callback for topic __info__", - "asctime": "2023-02-09 15:56:54,324" + "asctime": "2023-02-15 07:13:23,205" }, { "name": "smart_brain.mqtt.__info__", @@ -80,15 +80,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954614.3243482, - "msecs": 324.34821128845215, - "relativeCreated": 220.59059143066406, - "thread": 139894075555840, + "created": 1676441603.2056034, + "msecs": 205.60336112976074, + "relativeCreated": 209.11860466003418, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic __info__ and payload null", - "asctime": "2023-02-09 15:56:54,324" + "asctime": "2023-02-15 07:13:23,205" } ], "testcaseLogger": [ @@ -109,15 +109,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954614.3269053, - "msecs": 326.9052505493164, - "relativeCreated": 223.14763069152832, - "thread": 139894075555840, + "created": 1676441603.206969, + "msecs": 206.9690227508545, + "relativeCreated": 210.48426628112793, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:54,326", + "asctime": "2023-02-15 07:13:23,206", "moduleLogger": [ { "name": "__unittest__", @@ -137,15 +137,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954614.3268197, - "msecs": 326.81965827941895, - "relativeCreated": 223.06203842163086, - "thread": 139894075555840, + "created": 1676441603.2069187, + "msecs": 206.91871643066406, + "relativeCreated": 210.4339599609375, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:56:54,326" + "asctime": "2023-02-15 07:13:23,206" }, { "name": "__unittest__", @@ -166,18 +166,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954614.326863, - "msecs": 326.86305046081543, - "relativeCreated": 223.10543060302734, - "thread": 139894075555840, + "created": 1676441603.2069452, + "msecs": 206.94518089294434, + "relativeCreated": 210.46042442321777, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:56:54,326" + "asctime": "2023-02-15 07:13:23,206" } ], - "time_consumption": 4.220008850097656e-05 + "time_consumption": 2.384185791015625e-05 }, { "name": "__tLogger__", @@ -195,22 +195,22 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954614.6276383, - "msecs": 627.6383399963379, - "relativeCreated": 523.8807201385498, - "thread": 139894075555840, + "created": 1676441603.5077748, + "msecs": 507.77482986450195, + "relativeCreated": 511.2900733947754, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:56:54,627", + "asctime": "2023-02-15 07:13:23,507", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "on" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"on\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -222,15 +222,177 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954614.3269832, - "msecs": 326.9832134246826, - "relativeCreated": 223.22559356689453, - "thread": 139894075555840, + "created": 1676441603.2070243, + "msecs": 207.02433586120605, + "relativeCreated": 210.5395793914795, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on", - "asctime": "2023-02-09 15:56:54,326" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"on\"}", + "asctime": "2023-02-15 07:13:23,207" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441603.207212, + "msecs": 207.21197128295898, + "relativeCreated": 210.72721481323242, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:23,207" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441603.2073543, + "msecs": 207.35430717468262, + "relativeCreated": 210.86955070495605, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:23,207" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441603.2074718, + "msecs": 207.4718475341797, + "relativeCreated": 210.98709106445312, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:23,207" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441603.2075827, + "msecs": 207.5827121734619, + "relativeCreated": 211.09795570373535, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:23,207" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441603.207698, + "msecs": 207.69810676574707, + "relativeCreated": 211.2133502960205, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:23,207" + }, + { + "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/stw/stairway/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441603.2078216, + "msecs": 207.82160758972168, + "relativeCreated": 211.33685111999512, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:23,207" }, { "name": "smart_brain.mqtt.__info__", @@ -249,22 +411,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954614.327394, - "msecs": 327.3940086364746, - "relativeCreated": 223.63638877868652, - "thread": 139894051313216, + "created": 1676441603.2079427, + "msecs": 207.94272422790527, + "relativeCreated": 211.4579677581787, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic __info__ and payload b'null'", - "asctime": "2023-02-09 15:56:54,327" + "asctime": "2023-02-15 07:13:23,207" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'on'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"on\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -276,22 +438,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954614.3735678, - "msecs": 373.5678195953369, - "relativeCreated": 269.8101997375488, - "thread": 139894051313216, + "created": 1676441603.250817, + "msecs": 250.81706047058105, + "relativeCreated": 254.3323040008545, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on'", - "asctime": "2023-02-09 15:56:54,373" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:23,250" }, { "name": "smart_brain.mqtt.__info__", "msg": "Received message with topic %s and payload %s", "args": [ "__info__", - "b'{\"app_name\": \"smart_brain\", \"version\": {\"readable\": \"1.0.1\", \"major\": 1, \"minor\": 0, \"patch\": 1}, \"git\": {\"url\": \"https://git.mount-mockery.de/smarthome/smart_brain.git\", \"ref\": \"0b74ff04c9f3cb8c2608c2bcc2ba7759195ea5f8\"}}'" + "b'{\"app_name\": \"smart_brain\", \"version\": {\"readable\": \"1.2.0\", \"major\": 1, \"minor\": 2, \"patch\": 0}, \"git\": {\"url\": \"https://git.mount-mockery.de/smarthome/smart_brain.git\", \"ref\": \"f3ed72974e5fd3bf932ab78acdf0a1d6154dd733\"}}'" ], "levelname": "DEBUG", "levelno": 10, @@ -303,15 +465,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954614.3738735, - "msecs": 373.8734722137451, - "relativeCreated": 270.11585235595703, - "thread": 139894051313216, + "created": 1676441603.251068, + "msecs": 251.068115234375, + "relativeCreated": 254.58335876464844, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic __info__ and payload b'{\"app_name\": \"smart_brain\", \"version\": {\"readable\": \"1.0.1\", \"major\": 1, \"minor\": 0, \"patch\": 1}, \"git\": {\"url\": \"https://git.mount-mockery.de/smarthome/smart_brain.git\", \"ref\": \"0b74ff04c9f3cb8c2608c2bcc2ba7759195ea5f8\"}}'", - "asctime": "2023-02-09 15:56:54,373" + "process": 509276, + "message": "Received message with topic __info__ and payload b'{\"app_name\": \"smart_brain\", \"version\": {\"readable\": \"1.2.0\", \"major\": 1, \"minor\": 2, \"patch\": 0}, \"git\": {\"url\": \"https://git.mount-mockery.de/smarthome/smart_brain.git\", \"ref\": \"f3ed72974e5fd3bf932ab78acdf0a1d6154dd733\"}}'", + "asctime": "2023-02-15 07:13:23,251" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -330,45 +492,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954614.37413, - "msecs": 374.1300106048584, - "relativeCreated": 270.3723907470703, - "thread": 139894051313216, + "created": 1676441603.251314, + "msecs": 251.3139247894287, + "relativeCreated": 254.82916831970215, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:56:54,374" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954614.3744109, - "msecs": 374.41086769104004, - "relativeCreated": 270.65324783325195, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:54,374" + "asctime": "2023-02-15 07:13:23,251" } ], - "time_consumption": 0.25322747230529785 + "time_consumption": 0.25646090507507324 }, { "name": "__tLogger__", @@ -387,15 +522,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954614.628335, - "msecs": 628.3349990844727, - "relativeCreated": 524.5773792266846, - "thread": 139894075555840, + "created": 1676441603.5084796, + "msecs": 508.4795951843262, + "relativeCreated": 511.9948387145996, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:54,628", + "asctime": "2023-02-15 07:13:23,508", "moduleLogger": [ { "name": "__unittest__", @@ -415,15 +550,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954614.6280868, - "msecs": 628.0868053436279, - "relativeCreated": 524.3291854858398, - "thread": 139894075555840, + "created": 1676441603.5082374, + "msecs": 508.237361907959, + "relativeCreated": 511.7526054382324, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:56:54,628" + "asctime": "2023-02-15 07:13:23,508" }, { "name": "__unittest__", @@ -444,18 +579,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954614.628225, - "msecs": 628.2250881195068, - "relativeCreated": 524.4674682617188, - "thread": 139894075555840, + "created": 1676441603.5083725, + "msecs": 508.37254524230957, + "relativeCreated": 511.887788772583, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:56:54,628" + "asctime": "2023-02-15 07:13:23,508" } ], - "time_consumption": 0.00010991096496582031 + "time_consumption": 0.00010704994201660156 }, { "name": "__tLogger__", @@ -474,15 +609,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954614.6287339, - "msecs": 628.7338733673096, - "relativeCreated": 524.9762535095215, - "thread": 139894075555840, + "created": 1676441603.508868, + "msecs": 508.8679790496826, + "relativeCreated": 512.383222579956, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:54,628", + "asctime": "2023-02-15 07:13:23,508", "moduleLogger": [ { "name": "__unittest__", @@ -502,15 +637,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954614.628545, - "msecs": 628.5450458526611, - "relativeCreated": 524.787425994873, - "thread": 139894075555840, + "created": 1676441603.5086477, + "msecs": 508.6476802825928, + "relativeCreated": 512.1629238128662, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:56:54,628" + "asctime": "2023-02-15 07:13:23,508" }, { "name": "__unittest__", @@ -531,18 +666,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954614.6286447, - "msecs": 628.6447048187256, - "relativeCreated": 524.8870849609375, - "thread": 139894075555840, + "created": 1676441603.5087454, + "msecs": 508.7454319000244, + "relativeCreated": 512.2606754302979, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:56:54,628" + "asctime": "2023-02-15 07:13:23,508" } ], - "time_consumption": 8.916854858398438e-05 + "time_consumption": 0.00012254714965820312 }, { "name": "__tLogger__", @@ -560,21 +695,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954614.9309928, - "msecs": 930.992841720581, - "relativeCreated": 827.235221862793, - "thread": 139894075555840, + "created": 1676441603.8100424, + "msecs": 810.0423812866211, + "relativeCreated": 813.5576248168945, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:56:54,930", + "asctime": "2023-02-15 07:13:23,810", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", + "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/floorlamp/state", + "videv/ffe/diningroom/floorlamp/state/set", "false" ], "levelname": "DEBUG", @@ -587,42 +722,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954614.6290085, - "msecs": 629.0085315704346, - "relativeCreated": 525.2509117126465, - "thread": 139894075555840, + "created": 1676441603.5091567, + "msecs": 509.1567039489746, + "relativeCreated": 512.671947479248, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state and payload false", - "asctime": "2023-02-09 15:56:54,629" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954614.6301138, - "msecs": 630.1138401031494, - "relativeCreated": 526.3562202453613, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:56:54,630" + "process": 509276, + "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false", + "asctime": "2023-02-15 07:13:23,509" }, { "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.set", @@ -641,22 +749,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954614.6316884, - "msecs": 631.6883563995361, - "relativeCreated": 527.930736541748, - "thread": 139894051313216, + "created": 1676441603.5120163, + "msecs": 512.0162963867188, + "relativeCreated": 515.5315399169922, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:56:54,631" + "asctime": "2023-02-15 07:13:23,512" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "off" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"off\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -668,22 +776,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954614.6320987, - "msecs": 632.0986747741699, - "relativeCreated": 528.3410549163818, - "thread": 139894051313216, + "created": 1676441603.512494, + "msecs": 512.4940872192383, + "relativeCreated": 516.0093307495117, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off", - "asctime": "2023-02-09 15:56:54,632" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"off\"}", + "asctime": "2023-02-15 07:13:23,512" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'off'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -695,15 +803,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954614.6330817, - "msecs": 633.0816745758057, - "relativeCreated": 529.3240547180176, - "thread": 139894051313216, + "created": 1676441603.5134904, + "msecs": 513.4904384613037, + "relativeCreated": 517.0056819915771, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off'", - "asctime": "2023-02-09 15:56:54,633" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:23,513" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -722,45 +830,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954614.6765015, - "msecs": 676.5015125274658, - "relativeCreated": 572.7438926696777, - "thread": 139894051313216, + "created": 1676441603.5576231, + "msecs": 557.6231479644775, + "relativeCreated": 561.138391494751, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:56:54,676" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954614.6772835, - "msecs": 677.283525466919, - "relativeCreated": 573.5259056091309, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:54,677" + "asctime": "2023-02-15 07:13:23,557" } ], - "time_consumption": 0.2537093162536621 + "time_consumption": 0.25241923332214355 }, { "name": "__tLogger__", @@ -779,15 +860,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954614.9316864, - "msecs": 931.6864013671875, - "relativeCreated": 827.9287815093994, - "thread": 139894075555840, + "created": 1676441603.8107123, + "msecs": 810.7123374938965, + "relativeCreated": 814.2275810241699, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:54,931", + "asctime": "2023-02-15 07:13:23,810", "moduleLogger": [ { "name": "__unittest__", @@ -807,15 +888,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954614.9314065, - "msecs": 931.4064979553223, - "relativeCreated": 827.6488780975342, - "thread": 139894075555840, + "created": 1676441603.810468, + "msecs": 810.4679584503174, + "relativeCreated": 813.9832019805908, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:56:54,931" + "asctime": "2023-02-15 07:13:23,810" }, { "name": "__unittest__", @@ -836,18 +917,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954614.9315748, - "msecs": 931.574821472168, - "relativeCreated": 827.8172016143799, - "thread": 139894075555840, + "created": 1676441603.8106039, + "msecs": 810.6038570404053, + "relativeCreated": 814.1191005706787, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:56:54,931" + "asctime": "2023-02-15 07:13:23,810" } ], - "time_consumption": 0.00011157989501953125 + "time_consumption": 0.00010848045349121094 }, { "name": "__tLogger__", @@ -866,15 +947,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954614.93205, - "msecs": 932.0499897003174, - "relativeCreated": 828.2923698425293, - "thread": 139894075555840, + "created": 1676441603.8110979, + "msecs": 811.0978603363037, + "relativeCreated": 814.6131038665771, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:54,932", + "asctime": "2023-02-15 07:13:23,811", "moduleLogger": [ { "name": "__unittest__", @@ -894,15 +975,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954614.9318585, - "msecs": 931.8585395812988, - "relativeCreated": 828.1009197235107, - "thread": 139894075555840, + "created": 1676441603.8108804, + "msecs": 810.8804225921631, + "relativeCreated": 814.3956661224365, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:56:54,931" + "asctime": "2023-02-15 07:13:23,810" }, { "name": "__unittest__", @@ -923,18 +1004,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954614.9319584, - "msecs": 931.9584369659424, - "relativeCreated": 828.2008171081543, - "thread": 139894075555840, + "created": 1676441603.8109765, + "msecs": 810.976505279541, + "relativeCreated": 814.4917488098145, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:56:54,931" + "asctime": "2023-02-15 07:13:23,810" } ], - "time_consumption": 9.1552734375e-05 + "time_consumption": 0.00012135505676269531 }, { "name": "__tLogger__", @@ -952,22 +1033,22 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954615.2332678, - "msecs": 233.26778411865234, - "relativeCreated": 1129.5101642608643, - "thread": 139894075555840, + "created": 1676441604.1124988, + "msecs": 112.49876022338867, + "relativeCreated": 1116.014003753662, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:56:55,233", + "asctime": "2023-02-15 07:13:24,112", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "on" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"on\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -979,22 +1060,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954614.9322774, - "msecs": 932.2774410247803, - "relativeCreated": 828.5198211669922, - "thread": 139894075555840, + "created": 1676441603.8113678, + "msecs": 811.3677501678467, + "relativeCreated": 814.8829936981201, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on", - "asctime": "2023-02-09 15:56:54,932" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"on\"}", + "asctime": "2023-02-15 07:13:23,811" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'on'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"on\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -1006,15 +1087,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954614.9333842, - "msecs": 933.3841800689697, - "relativeCreated": 829.6265602111816, - "thread": 139894051313216, + "created": 1676441603.8124561, + "msecs": 812.4561309814453, + "relativeCreated": 815.9713745117188, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on'", - "asctime": "2023-02-09 15:56:54,933" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:23,812" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -1033,45 +1114,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954614.9355483, - "msecs": 935.5483055114746, - "relativeCreated": 831.7906856536865, - "thread": 139894051313216, + "created": 1676441603.8145514, + "msecs": 814.5513534545898, + "relativeCreated": 818.0665969848633, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:56:54,935" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954614.936233, - "msecs": 936.2330436706543, - "relativeCreated": 832.4754238128662, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:54,936" + "asctime": "2023-02-15 07:13:23,814" } ], - "time_consumption": 0.29703474044799805 + "time_consumption": 0.29794740676879883 }, { "name": "__tLogger__", @@ -1090,15 +1144,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954615.2338557, - "msecs": 233.8557243347168, - "relativeCreated": 1130.0981044769287, - "thread": 139894075555840, + "created": 1676441604.1132245, + "msecs": 113.22450637817383, + "relativeCreated": 1116.7397499084473, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:55,233", + "asctime": "2023-02-15 07:13:24,113", "moduleLogger": [ { "name": "__unittest__", @@ -1118,15 +1172,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954615.2336164, - "msecs": 233.61635208129883, - "relativeCreated": 1129.8587322235107, - "thread": 139894075555840, + "created": 1676441604.1129472, + "msecs": 112.94722557067871, + "relativeCreated": 1116.4624691009521, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:56:55,233" + "asctime": "2023-02-15 07:13:24,112" }, { "name": "__unittest__", @@ -1147,18 +1201,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954615.2337344, - "msecs": 233.7343692779541, - "relativeCreated": 1129.976749420166, - "thread": 139894075555840, + "created": 1676441604.1131005, + "msecs": 113.10052871704102, + "relativeCreated": 1116.6157722473145, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:56:55,233" + "asctime": "2023-02-15 07:13:24,113" } ], - "time_consumption": 0.00012135505676269531 + "time_consumption": 0.0001239776611328125 }, { "name": "__tLogger__", @@ -1177,15 +1231,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954615.2341971, - "msecs": 234.19713973999023, - "relativeCreated": 1130.4395198822021, - "thread": 139894075555840, + "created": 1676441604.1136353, + "msecs": 113.63530158996582, + "relativeCreated": 1117.1505451202393, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:55,234", + "asctime": "2023-02-15 07:13:24,113", "moduleLogger": [ { "name": "__unittest__", @@ -1205,15 +1259,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954615.2340252, - "msecs": 234.025239944458, - "relativeCreated": 1130.26762008667, - "thread": 139894075555840, + "created": 1676441604.1134202, + "msecs": 113.42024803161621, + "relativeCreated": 1116.9354915618896, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:56:55,234" + "asctime": "2023-02-15 07:13:24,113" }, { "name": "__unittest__", @@ -1234,18 +1288,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954615.2341182, - "msecs": 234.11822319030762, - "relativeCreated": 1130.3606033325195, - "thread": 139894075555840, + "created": 1676441604.1135333, + "msecs": 113.53325843811035, + "relativeCreated": 1117.0485019683838, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:56:55,234" + "asctime": "2023-02-15 07:13:24,113" } ], - "time_consumption": 7.891654968261719e-05 + "time_consumption": 0.00010204315185546875 }, { "name": "__tLogger__", @@ -1263,21 +1317,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954615.53628, - "msecs": 536.2799167633057, - "relativeCreated": 1432.5222969055176, - "thread": 139894075555840, + "created": 1676441604.415109, + "msecs": 415.10891914367676, + "relativeCreated": 1418.6241626739502, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:56:55,536", + "asctime": "2023-02-15 07:13:24,415", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", + "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/floorlamp/state", + "videv/ffe/diningroom/floorlamp/state/set", "false" ], "levelname": "DEBUG", @@ -1290,42 +1344,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954615.234439, - "msecs": 234.43889617919922, - "relativeCreated": 1130.6812763214111, - "thread": 139894075555840, + "created": 1676441604.1139228, + "msecs": 113.9228343963623, + "relativeCreated": 1117.4380779266357, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state and payload false", - "asctime": "2023-02-09 15:56:55,234" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954615.2354088, - "msecs": 235.40878295898438, - "relativeCreated": 1131.6511631011963, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:56:55,235" + "process": 509276, + "message": "Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false", + "asctime": "2023-02-15 07:13:24,113" }, { "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.set", @@ -1344,22 +1371,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.236864, - "msecs": 236.8640899658203, - "relativeCreated": 1133.1064701080322, - "thread": 139894051313216, + "created": 1676441604.1172483, + "msecs": 117.2482967376709, + "relativeCreated": 1120.7635402679443, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:56:55,236" + "asctime": "2023-02-15 07:13:24,117" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "off" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"off\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -1371,22 +1398,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954615.2372715, - "msecs": 237.27154731750488, - "relativeCreated": 1133.5139274597168, - "thread": 139894051313216, + "created": 1676441604.1178486, + "msecs": 117.84863471984863, + "relativeCreated": 1121.363878250122, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off", - "asctime": "2023-02-09 15:56:55,237" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"off\"}", + "asctime": "2023-02-15 07:13:24,117" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'off'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -1398,15 +1425,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.2381074, - "msecs": 238.10744285583496, - "relativeCreated": 1134.3498229980469, - "thread": 139894051313216, + "created": 1676441604.1188965, + "msecs": 118.896484375, + "relativeCreated": 1122.4117279052734, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off'", - "asctime": "2023-02-09 15:56:55,238" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:24,118" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -1425,45 +1452,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.2817862, - "msecs": 281.7862033843994, - "relativeCreated": 1178.0285835266113, - "thread": 139894051313216, + "created": 1676441604.163219, + "msecs": 163.21897506713867, + "relativeCreated": 1166.734218597412, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:56:55,281" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954615.2824724, - "msecs": 282.4723720550537, - "relativeCreated": 1178.7147521972656, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:55,282" + "asctime": "2023-02-15 07:13:24,163" } ], - "time_consumption": 0.25380754470825195 + "time_consumption": 0.2518899440765381 }, { "name": "__tLogger__", @@ -1482,15 +1482,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954615.536865, - "msecs": 536.8649959564209, - "relativeCreated": 1433.1073760986328, - "thread": 139894075555840, + "created": 1676441604.4158795, + "msecs": 415.879487991333, + "relativeCreated": 1419.3947315216064, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:55,536", + "asctime": "2023-02-15 07:13:24,415", "moduleLogger": [ { "name": "__unittest__", @@ -1510,15 +1510,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954615.5366488, - "msecs": 536.6487503051758, - "relativeCreated": 1432.8911304473877, - "thread": 139894075555840, + "created": 1676441604.41556, + "msecs": 415.5600070953369, + "relativeCreated": 1419.0752506256104, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:56:55,536" + "asctime": "2023-02-15 07:13:24,415" }, { "name": "__unittest__", @@ -1539,23 +1539,23 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954615.5367703, - "msecs": 536.7703437805176, - "relativeCreated": 1433.0127239227295, - "thread": 139894075555840, + "created": 1676441604.4157133, + "msecs": 415.7133102416992, + "relativeCreated": 1419.2285537719727, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:56:55,536" + "asctime": "2023-02-15 07:13:24,415" } ], - "time_consumption": 9.465217590332031e-05 + "time_consumption": 0.00016617774963378906 } ], - "time_consumption": 1.2101409435272217, - "time_start": "2023-02-09 15:56:54,326", - "time_finished": "2023-02-09 15:56:55,536" + "time_consumption": 1.209017038345337, + "time_start": "2023-02-15 07:13:23,206", + "time_finished": "2023-02-15 07:13:24,415" }, "Power On/ Off test for device and virtual device: shellies/ffe/diningroom/main_light": { "name": "__tLogger__", @@ -1571,15 +1571,15 @@ "stack_info": null, "lineno": 27, "funcName": "test_power_on_off", - "created": 1675954615.537326, - "msecs": 537.3260974884033, - "relativeCreated": 1433.5684776306152, - "thread": 139894075555840, + "created": 1676441604.416438, + "msecs": 416.43810272216797, + "relativeCreated": 1419.9533462524414, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Power On/ Off test for device and virtual device: shellies/ffe/diningroom/main_light", - "asctime": "2023-02-09 15:56:55,537", + "asctime": "2023-02-15 07:13:24,416", "moduleLogger": [], "testcaseLogger": [ { @@ -1599,15 +1599,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954615.537724, - "msecs": 537.7240180969238, - "relativeCreated": 1433.9663982391357, - "thread": 139894075555840, + "created": 1676441604.4169004, + "msecs": 416.9003963470459, + "relativeCreated": 1420.4156398773193, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:55,537", + "asctime": "2023-02-15 07:13:24,416", "moduleLogger": [ { "name": "__unittest__", @@ -1627,15 +1627,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954615.5375416, - "msecs": 537.5416278839111, - "relativeCreated": 1433.784008026123, - "thread": 139894075555840, + "created": 1676441604.416667, + "msecs": 416.66698455810547, + "relativeCreated": 1420.182228088379, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:56:55,537" + "asctime": "2023-02-15 07:13:24,416" }, { "name": "__unittest__", @@ -1656,18 +1656,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954615.5376387, - "msecs": 537.6386642456055, - "relativeCreated": 1433.8810443878174, - "thread": 139894075555840, + "created": 1676441604.416792, + "msecs": 416.7919158935547, + "relativeCreated": 1420.3071594238281, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:56:55,537" + "asctime": "2023-02-15 07:13:24,416" } ], - "time_consumption": 8.535385131835938e-05 + "time_consumption": 0.00010848045349121094 }, { "name": "__tLogger__", @@ -1685,15 +1685,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954615.838892, - "msecs": 838.8919830322266, - "relativeCreated": 1735.1343631744385, - "thread": 139894075555840, + "created": 1676441604.7183702, + "msecs": 718.3701992034912, + "relativeCreated": 1721.8854427337646, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:56:55,838", + "asctime": "2023-02-15 07:13:24,718", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -1712,15 +1712,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954615.5379376, - "msecs": 537.9376411437988, - "relativeCreated": 1434.1800212860107, - "thread": 139894075555840, + "created": 1676441604.417199, + "msecs": 417.19889640808105, + "relativeCreated": 1420.7141399383545, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:56:55,537" + "asctime": "2023-02-15 07:13:24,417" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -1739,15 +1739,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.5389125, - "msecs": 538.9125347137451, - "relativeCreated": 1435.154914855957, - "thread": 139894051313216, + "created": 1676441604.4185119, + "msecs": 418.51186752319336, + "relativeCreated": 1422.0271110534668, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:56:55,538" + "asctime": "2023-02-15 07:13:24,418" }, { "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.set", @@ -1766,22 +1766,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.5413184, - "msecs": 541.318416595459, - "relativeCreated": 1437.560796737671, - "thread": 139894051313216, + "created": 1676441604.421599, + "msecs": 421.5989112854004, + "relativeCreated": 1425.1141548156738, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:56:55,541" + "asctime": "2023-02-15 07:13:24,421" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "on" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"on\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -1793,15 +1793,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954615.5416737, - "msecs": 541.6736602783203, - "relativeCreated": 1437.9160404205322, - "thread": 139894051313216, + "created": 1676441604.422131, + "msecs": 422.1310615539551, + "relativeCreated": 1425.6463050842285, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on", - "asctime": "2023-02-09 15:56:55,541" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"on\"}", + "asctime": "2023-02-15 07:13:24,422" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", @@ -1820,22 +1820,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.5422041, - "msecs": 542.2041416168213, - "relativeCreated": 1438.4465217590332, - "thread": 139894051313216, + "created": 1676441604.4228916, + "msecs": 422.89161682128906, + "relativeCreated": 1426.4068603515625, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:56:55,542" + "asctime": "2023-02-15 07:13:24,422" }, { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"on\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -1847,42 +1847,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.542843, - "msecs": 542.8431034088135, - "relativeCreated": 1439.0854835510254, - "thread": 139894051313216, + "created": 1676441604.4240448, + "msecs": 424.0448474884033, + "relativeCreated": 1427.5600910186768, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:55,542" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954615.543337, - "msecs": 543.3371067047119, - "relativeCreated": 1439.5794868469238, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on'", - "asctime": "2023-02-09 15:56:55,543" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:24,424" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -1901,45 +1874,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.5854342, - "msecs": 585.4341983795166, - "relativeCreated": 1481.6765785217285, - "thread": 139894051313216, + "created": 1676441604.467207, + "msecs": 467.2069549560547, + "relativeCreated": 1470.7221984863281, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:56:55,585" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954615.58608, - "msecs": 586.0800743103027, - "relativeCreated": 1482.3224544525146, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:55,586" + "asctime": "2023-02-15 07:13:24,467" } ], - "time_consumption": 0.25281190872192383 + "time_consumption": 0.2511632442474365 }, { "name": "__tLogger__", @@ -1958,15 +1904,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954615.8394606, - "msecs": 839.4606113433838, - "relativeCreated": 1735.7029914855957, - "thread": 139894075555840, + "created": 1676441604.7191498, + "msecs": 719.1498279571533, + "relativeCreated": 1722.6650714874268, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:55,839", + "asctime": "2023-02-15 07:13:24,719", "moduleLogger": [ { "name": "__unittest__", @@ -1986,15 +1932,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954615.8392465, - "msecs": 839.2465114593506, - "relativeCreated": 1735.4888916015625, - "thread": 139894075555840, + "created": 1676441604.7188663, + "msecs": 718.8663482666016, + "relativeCreated": 1722.381591796875, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:56:55,839" + "asctime": "2023-02-15 07:13:24,718" }, { "name": "__unittest__", @@ -2015,18 +1961,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954615.8393679, - "msecs": 839.3678665161133, - "relativeCreated": 1735.6102466583252, - "thread": 139894075555840, + "created": 1676441604.7190242, + "msecs": 719.0241813659668, + "relativeCreated": 1722.5394248962402, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:56:55,839" + "asctime": "2023-02-15 07:13:24,719" } ], - "time_consumption": 9.274482727050781e-05 + "time_consumption": 0.00012564659118652344 }, { "name": "__tLogger__", @@ -2045,15 +1991,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954615.8397703, - "msecs": 839.7703170776367, - "relativeCreated": 1736.0126972198486, - "thread": 139894075555840, + "created": 1676441604.7196107, + "msecs": 719.6106910705566, + "relativeCreated": 1723.12593460083, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:55,839", + "asctime": "2023-02-15 07:13:24,719", "moduleLogger": [ { "name": "__unittest__", @@ -2073,15 +2019,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954615.839607, - "msecs": 839.6070003509521, - "relativeCreated": 1735.849380493164, - "thread": 139894075555840, + "created": 1676441604.7193482, + "msecs": 719.3481922149658, + "relativeCreated": 1722.8634357452393, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:56:55,839" + "asctime": "2023-02-15 07:13:24,719" }, { "name": "__unittest__", @@ -2102,18 +2048,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954615.8396928, - "msecs": 839.6928310394287, - "relativeCreated": 1735.9352111816406, - "thread": 139894075555840, + "created": 1676441604.7195063, + "msecs": 719.5062637329102, + "relativeCreated": 1723.0215072631836, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:56:55,839" + "asctime": "2023-02-15 07:13:24,719" } ], - "time_consumption": 7.748603820800781e-05 + "time_consumption": 0.00010442733764648438 }, { "name": "__tLogger__", @@ -2131,21 +2077,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954616.1409574, - "msecs": 140.95735549926758, - "relativeCreated": 2037.1997356414795, - "thread": 139894075555840, + "created": 1676441605.0215003, + "msecs": 21.500349044799805, + "relativeCreated": 2025.0155925750732, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:56:56,140", + "asctime": "2023-02-15 07:13:25,021", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", + "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/main_light/state", + "videv/ffe/diningroom/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -2158,42 +2104,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954615.8400073, - "msecs": 840.0073051452637, - "relativeCreated": 1736.2496852874756, - "thread": 139894075555840, + "created": 1676441604.7199557, + "msecs": 719.9556827545166, + "relativeCreated": 1723.47092628479, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/diningroom/main_light/state and payload false", - "asctime": "2023-02-09 15:56:55,840" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954615.8409882, - "msecs": 840.9881591796875, - "relativeCreated": 1737.2305393218994, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:55,840" + "process": 509276, + "message": "Sending message with topic videv/ffe/diningroom/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:24,719" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0.command", @@ -2212,15 +2131,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.8425682, - "msecs": 842.5681591033936, - "relativeCreated": 1738.8105392456055, - "thread": 139894051313216, + "created": 1676441604.723922, + "msecs": 723.9220142364502, + "relativeCreated": 1727.4372577667236, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:56:55,842" + "asctime": "2023-02-15 07:13:24,723" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -2239,15 +2158,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954615.8429477, - "msecs": 842.9477214813232, - "relativeCreated": 1739.1901016235352, - "thread": 139894051313216, + "created": 1676441604.724546, + "msecs": 724.545955657959, + "relativeCreated": 1728.0611991882324, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:56:55,842" + "asctime": "2023-02-15 07:13:24,724" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -2266,15 +2185,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.8438118, - "msecs": 843.8117504119873, - "relativeCreated": 1740.0541305541992, - "thread": 139894051313216, + "created": 1676441604.7257063, + "msecs": 725.7063388824463, + "relativeCreated": 1729.2215824127197, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:56:55,843" + "asctime": "2023-02-15 07:13:24,725" }, { "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.set", @@ -2293,22 +2212,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.8885155, - "msecs": 888.5154724121094, - "relativeCreated": 1784.7578525543213, - "thread": 139894051313216, + "created": 1676441604.7712677, + "msecs": 771.2676525115967, + "relativeCreated": 1774.7828960418701, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:56:55,888" + "asctime": "2023-02-15 07:13:24,771" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "off" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"off\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -2320,15 +2239,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954615.8889248, - "msecs": 888.9248371124268, - "relativeCreated": 1785.1672172546387, - "thread": 139894051313216, + "created": 1676441604.7716863, + "msecs": 771.686315536499, + "relativeCreated": 1775.2015590667725, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off", - "asctime": "2023-02-09 15:56:55,888" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"off\"}", + "asctime": "2023-02-15 07:13:24,771" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", @@ -2347,22 +2266,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.889516, - "msecs": 889.5161151885986, - "relativeCreated": 1785.7584953308105, - "thread": 139894051313216, + "created": 1676441604.7719684, + "msecs": 771.9683647155762, + "relativeCreated": 1775.4836082458496, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:55,889" + "asctime": "2023-02-15 07:13:24,771" }, { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -2374,42 +2293,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.8901572, - "msecs": 890.1572227478027, - "relativeCreated": 1786.3996028900146, - "thread": 139894051313216, + "created": 1676441604.7723544, + "msecs": 772.3543643951416, + "relativeCreated": 1775.869607925415, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:55,890" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954615.8906565, - "msecs": 890.6564712524414, - "relativeCreated": 1786.8988513946533, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off'", - "asctime": "2023-02-09 15:56:55,890" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:24,772" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -2428,45 +2320,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954615.9336886, - "msecs": 933.6886405944824, - "relativeCreated": 1829.9310207366943, - "thread": 139894051313216, + "created": 1676441604.8153913, + "msecs": 815.3913021087646, + "relativeCreated": 1818.906545639038, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:56:55,933" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954615.934546, - "msecs": 934.5459938049316, - "relativeCreated": 1830.7883739471436, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:55,934" + "asctime": "2023-02-15 07:13:24,815" } ], - "time_consumption": 0.20641136169433594 + "time_consumption": 0.20610904693603516 }, { "name": "__tLogger__", @@ -2485,15 +2350,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954616.1416497, - "msecs": 141.64972305297852, - "relativeCreated": 2037.8921031951904, - "thread": 139894075555840, + "created": 1676441605.0221798, + "msecs": 22.179841995239258, + "relativeCreated": 2025.6950855255127, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:56,141", + "asctime": "2023-02-15 07:13:25,022", "moduleLogger": [ { "name": "__unittest__", @@ -2513,15 +2378,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954616.1414225, - "msecs": 141.42251014709473, - "relativeCreated": 2037.6648902893066, - "thread": 139894075555840, + "created": 1676441605.0219338, + "msecs": 21.933794021606445, + "relativeCreated": 2025.4490375518799, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:56:56,141" + "asctime": "2023-02-15 07:13:25,021" }, { "name": "__unittest__", @@ -2542,18 +2407,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954616.141551, - "msecs": 141.55101776123047, - "relativeCreated": 2037.7933979034424, - "thread": 139894075555840, + "created": 1676441605.022068, + "msecs": 22.068023681640625, + "relativeCreated": 2025.583267211914, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:56:56,141" + "asctime": "2023-02-15 07:13:25,022" } ], - "time_consumption": 9.870529174804688e-05 + "time_consumption": 0.00011181831359863281 }, { "name": "__tLogger__", @@ -2572,15 +2437,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954616.141974, - "msecs": 141.97397232055664, - "relativeCreated": 2038.2163524627686, - "thread": 139894075555840, + "created": 1676441605.022603, + "msecs": 22.60303497314453, + "relativeCreated": 2026.118278503418, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:56,141", + "asctime": "2023-02-15 07:13:25,022", "moduleLogger": [ { "name": "__unittest__", @@ -2600,15 +2465,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954616.1418047, - "msecs": 141.80469512939453, - "relativeCreated": 2038.0470752716064, - "thread": 139894075555840, + "created": 1676441605.0223665, + "msecs": 22.36652374267578, + "relativeCreated": 2025.8817672729492, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:56:56,141" + "asctime": "2023-02-15 07:13:25,022" }, { "name": "__unittest__", @@ -2629,18 +2494,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954616.141895, - "msecs": 141.89505577087402, - "relativeCreated": 2038.137435913086, - "thread": 139894075555840, + "created": 1676441605.0225067, + "msecs": 22.5067138671875, + "relativeCreated": 2026.021957397461, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:56:56,141" + "asctime": "2023-02-15 07:13:25,022" } ], - "time_consumption": 7.891654968261719e-05 + "time_consumption": 9.632110595703125e-05 }, { "name": "__tLogger__", @@ -2658,15 +2523,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954616.4431107, - "msecs": 443.11070442199707, - "relativeCreated": 2339.353084564209, - "thread": 139894075555840, + "created": 1676441605.3239636, + "msecs": 323.9636421203613, + "relativeCreated": 2327.4788856506348, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:56:56,443", + "asctime": "2023-02-15 07:13:25,323", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -2685,15 +2550,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954616.1421847, - "msecs": 142.18473434448242, - "relativeCreated": 2038.4271144866943, - "thread": 139894075555840, + "created": 1676441605.0228605, + "msecs": 22.86052703857422, + "relativeCreated": 2026.3757705688477, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:56:56,142" + "asctime": "2023-02-15 07:13:25,022" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -2712,15 +2577,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.143157, - "msecs": 143.1570053100586, - "relativeCreated": 2039.3993854522705, - "thread": 139894051313216, + "created": 1676441605.0239441, + "msecs": 23.94413948059082, + "relativeCreated": 2027.4593830108643, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:56:56,143" + "asctime": "2023-02-15 07:13:25,023" }, { "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.set", @@ -2739,22 +2604,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.1456041, - "msecs": 145.60413360595703, - "relativeCreated": 2041.846513748169, - "thread": 139894051313216, + "created": 1676441605.0266538, + "msecs": 26.653766632080078, + "relativeCreated": 2030.1690101623535, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:56:56,145" + "asctime": "2023-02-15 07:13:25,026" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "on" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"on\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -2766,15 +2631,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954616.1459486, - "msecs": 145.9486484527588, - "relativeCreated": 2042.1910285949707, - "thread": 139894051313216, + "created": 1676441605.027105, + "msecs": 27.105093002319336, + "relativeCreated": 2030.6203365325928, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on", - "asctime": "2023-02-09 15:56:56,145" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"on\"}", + "asctime": "2023-02-15 07:13:25,027" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", @@ -2793,22 +2658,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.1464624, - "msecs": 146.46244049072266, - "relativeCreated": 2042.7048206329346, - "thread": 139894051313216, + "created": 1676441605.0277092, + "msecs": 27.709245681762695, + "relativeCreated": 2031.2244892120361, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:56:56,146" + "asctime": "2023-02-15 07:13:25,027" }, { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"on\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -2820,42 +2685,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.1470997, - "msecs": 147.09973335266113, - "relativeCreated": 2043.342113494873, - "thread": 139894051313216, + "created": 1676441605.0286913, + "msecs": 28.69129180908203, + "relativeCreated": 2032.2065353393555, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:56,147" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954616.1476107, - "msecs": 147.61066436767578, - "relativeCreated": 2043.8530445098877, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on'", - "asctime": "2023-02-09 15:56:56,147" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:25,028" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -2874,45 +2712,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.1923487, - "msecs": 192.34871864318848, - "relativeCreated": 2088.5910987854004, - "thread": 139894051313216, + "created": 1676441605.0711584, + "msecs": 71.15840911865234, + "relativeCreated": 2074.673652648926, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:56:56,192" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954616.192996, - "msecs": 192.99602508544922, - "relativeCreated": 2089.238405227661, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:56,192" + "asctime": "2023-02-15 07:13:25,071" } ], - "time_consumption": 0.25011467933654785 + "time_consumption": 0.252805233001709 }, { "name": "__tLogger__", @@ -2931,15 +2742,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954616.4437296, - "msecs": 443.7296390533447, - "relativeCreated": 2339.9720191955566, - "thread": 139894075555840, + "created": 1676441605.3247075, + "msecs": 324.7075080871582, + "relativeCreated": 2328.2227516174316, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:56,443", + "asctime": "2023-02-15 07:13:25,324", "moduleLogger": [ { "name": "__unittest__", @@ -2959,15 +2770,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954616.4434822, - "msecs": 443.4821605682373, - "relativeCreated": 2339.724540710449, - "thread": 139894075555840, + "created": 1676441605.3244202, + "msecs": 324.4202136993408, + "relativeCreated": 2327.9354572296143, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:56:56,443" + "asctime": "2023-02-15 07:13:25,324" }, { "name": "__unittest__", @@ -2988,18 +2799,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954616.443628, - "msecs": 443.62807273864746, - "relativeCreated": 2339.8704528808594, - "thread": 139894075555840, + "created": 1676441605.3245761, + "msecs": 324.57613945007324, + "relativeCreated": 2328.0913829803467, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:56:56,443" + "asctime": "2023-02-15 07:13:25,324" } ], - "time_consumption": 0.00010156631469726562 + "time_consumption": 0.00013136863708496094 }, { "name": "__tLogger__", @@ -3018,15 +2829,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954616.4440536, - "msecs": 444.05364990234375, - "relativeCreated": 2340.2960300445557, - "thread": 139894075555840, + "created": 1676441605.325169, + "msecs": 325.1690864562988, + "relativeCreated": 2328.6843299865723, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:56,444", + "asctime": "2023-02-15 07:13:25,325", "moduleLogger": [ { "name": "__unittest__", @@ -3046,15 +2857,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954616.4438853, - "msecs": 443.88532638549805, - "relativeCreated": 2340.12770652771, - "thread": 139894075555840, + "created": 1676441605.3249097, + "msecs": 324.9096870422363, + "relativeCreated": 2328.4249305725098, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:56:56,443" + "asctime": "2023-02-15 07:13:25,324" }, { "name": "__unittest__", @@ -3075,18 +2886,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954616.443975, - "msecs": 443.97497177124023, - "relativeCreated": 2340.217351913452, - "thread": 139894075555840, + "created": 1676441605.3250651, + "msecs": 325.06513595581055, + "relativeCreated": 2328.580379486084, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:56:56,443" + "asctime": "2023-02-15 07:13:25,325" } ], - "time_consumption": 7.867813110351562e-05 + "time_consumption": 0.00010395050048828125 }, { "name": "__tLogger__", @@ -3104,21 +2915,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954616.7452826, - "msecs": 745.2826499938965, - "relativeCreated": 2641.5250301361084, - "thread": 139894075555840, + "created": 1676441605.6264925, + "msecs": 626.4925003051758, + "relativeCreated": 2630.007743835449, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:56:56,745", + "asctime": "2023-02-15 07:13:25,626", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", + "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/main_light/state", + "videv/ffe/diningroom/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -3131,42 +2942,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954616.4443097, - "msecs": 444.3097114562988, - "relativeCreated": 2340.5520915985107, - "thread": 139894075555840, + "created": 1676441605.3254552, + "msecs": 325.4551887512207, + "relativeCreated": 2328.970432281494, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/diningroom/main_light/state and payload false", - "asctime": "2023-02-09 15:56:56,444" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954616.4452822, - "msecs": 445.2822208404541, - "relativeCreated": 2341.524600982666, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:56,445" + "process": 509276, + "message": "Sending message with topic videv/ffe/diningroom/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:25,325" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0.command", @@ -3185,15 +2969,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.447782, - "msecs": 447.782039642334, - "relativeCreated": 2344.024419784546, - "thread": 139894051313216, + "created": 1676441605.3292842, + "msecs": 329.2841911315918, + "relativeCreated": 2332.7994346618652, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:56:56,447" + "asctime": "2023-02-15 07:13:25,329" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -3212,15 +2996,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954616.448187, - "msecs": 448.18711280822754, - "relativeCreated": 2344.4294929504395, - "thread": 139894051313216, + "created": 1676441605.3298383, + "msecs": 329.8382759094238, + "relativeCreated": 2333.3535194396973, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:56:56,448" + "asctime": "2023-02-15 07:13:25,329" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -3239,15 +3023,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.449024, - "msecs": 449.023962020874, - "relativeCreated": 2345.266342163086, - "thread": 139894051313216, + "created": 1676441605.3309968, + "msecs": 330.9967517852783, + "relativeCreated": 2334.5119953155518, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:56:56,449" + "asctime": "2023-02-15 07:13:25,330" }, { "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.set", @@ -3266,22 +3050,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.492252, - "msecs": 492.2521114349365, - "relativeCreated": 2388.4944915771484, - "thread": 139894051313216, + "created": 1676441605.3749208, + "msecs": 374.9208450317383, + "relativeCreated": 2378.4360885620117, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:56:56,492" + "asctime": "2023-02-15 07:13:25,374" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "off" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"off\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -3293,15 +3077,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954616.492659, - "msecs": 492.6590919494629, - "relativeCreated": 2388.901472091675, - "thread": 139894051313216, + "created": 1676441605.375463, + "msecs": 375.46300888061523, + "relativeCreated": 2378.9782524108887, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off", - "asctime": "2023-02-09 15:56:56,492" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"off\"}", + "asctime": "2023-02-15 07:13:25,375" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", @@ -3320,22 +3104,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.4932532, - "msecs": 493.253231048584, - "relativeCreated": 2389.495611190796, - "thread": 139894051313216, + "created": 1676441605.3761423, + "msecs": 376.1422634124756, + "relativeCreated": 2379.657506942749, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:56,493" + "asctime": "2023-02-15 07:13:25,376" }, { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -3347,42 +3131,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.4939067, - "msecs": 493.90673637390137, - "relativeCreated": 2390.1491165161133, - "thread": 139894051313216, + "created": 1676441605.377225, + "msecs": 377.2249221801758, + "relativeCreated": 2380.740165710449, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:56,493" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954616.4944172, - "msecs": 494.4171905517578, - "relativeCreated": 2390.6595706939697, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off'", - "asctime": "2023-02-09 15:56:56,494" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:25,377" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -3401,45 +3158,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954616.5377595, - "msecs": 537.75954246521, - "relativeCreated": 2434.001922607422, - "thread": 139894051313216, + "created": 1676441605.4192588, + "msecs": 419.25883293151855, + "relativeCreated": 2422.774076461792, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:56:56,537" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954616.538495, - "msecs": 538.4950637817383, - "relativeCreated": 2434.73744392395, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:56,538" + "asctime": "2023-02-15 07:13:25,419" } ], - "time_consumption": 0.2067875862121582 + "time_consumption": 0.20723366737365723 }, { "name": "__tLogger__", @@ -3458,15 +3188,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954616.745988, - "msecs": 745.9878921508789, - "relativeCreated": 2642.230272293091, - "thread": 139894075555840, + "created": 1676441605.6272395, + "msecs": 627.239465713501, + "relativeCreated": 2630.7547092437744, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:56,745", + "asctime": "2023-02-15 07:13:25,627", "moduleLogger": [ { "name": "__unittest__", @@ -3486,15 +3216,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954616.7457035, - "msecs": 745.7034587860107, - "relativeCreated": 2641.9458389282227, - "thread": 139894075555840, + "created": 1676441605.626958, + "msecs": 626.957893371582, + "relativeCreated": 2630.4731369018555, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:56:56,745" + "asctime": "2023-02-15 07:13:25,626" }, { "name": "__unittest__", @@ -3515,23 +3245,23 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954616.7458773, - "msecs": 745.8772659301758, - "relativeCreated": 2642.1196460723877, - "thread": 139894075555840, + "created": 1676441605.627114, + "msecs": 627.1140575408936, + "relativeCreated": 2630.629301071167, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:56:56,745" + "asctime": "2023-02-15 07:13:25,627" } ], - "time_consumption": 0.000110626220703125 + "time_consumption": 0.00012540817260742188 } ], - "time_consumption": 1.2086617946624756, - "time_start": "2023-02-09 15:56:55,537", - "time_finished": "2023-02-09 15:56:56,745" + "time_consumption": 1.210801362991333, + "time_start": "2023-02-15 07:13:24,416", + "time_finished": "2023-02-15 07:13:25,627" }, "Power On/ Off synchronisation test: shellies/ffe/diningroom/main_light": { "name": "__tLogger__", @@ -3547,15 +3277,15 @@ "stack_info": null, "lineno": 24, "funcName": "test_power_on_off_sync", - "created": 1675954616.7464573, - "msecs": 746.4573383331299, - "relativeCreated": 2642.699718475342, - "thread": 139894075555840, + "created": 1676441605.627779, + "msecs": 627.7790069580078, + "relativeCreated": 2631.2942504882812, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Power On/ Off synchronisation test: shellies/ffe/diningroom/main_light", - "asctime": "2023-02-09 15:56:56,746", + "asctime": "2023-02-15 07:13:25,627", "moduleLogger": [], "testcaseLogger": [ { @@ -3574,15 +3304,15 @@ "stack_info": null, "lineno": 30, "funcName": "__test_power_on_off_sync__", - "created": 1675954617.0472033, - "msecs": 47.20330238342285, - "relativeCreated": 2943.4456825256348, - "thread": 139894075555840, + "created": 1676441605.928506, + "msecs": 928.5058975219727, + "relativeCreated": 2932.021141052246, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Setting preconditions for master device 'False'", - "asctime": "2023-02-09 15:56:57,047", + "asctime": "2023-02-15 07:13:25,928", "moduleLogger": [], "time_consumption": 0.0 }, @@ -3602,15 +3332,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off_sync__", - "created": 1675954617.3496275, - "msecs": 349.6274948120117, - "relativeCreated": 3245.8698749542236, - "thread": 139894075555840, + "created": 1676441606.229655, + "msecs": 229.65502738952637, + "relativeCreated": 3233.1702709198, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing master device state to 'True'", - "asctime": "2023-02-09 15:56:57,349", + "asctime": "2023-02-15 07:13:26,229", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -3629,15 +3359,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954617.0476649, - "msecs": 47.66488075256348, - "relativeCreated": 2943.9072608947754, - "thread": 139894075555840, + "created": 1676441605.928728, + "msecs": 928.7281036376953, + "relativeCreated": 2932.2433471679688, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:56:57,047" + "asctime": "2023-02-15 07:13:25,928" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -3656,15 +3386,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.0488393, - "msecs": 48.83933067321777, - "relativeCreated": 2945.0817108154297, - "thread": 139894051313216, + "created": 1676441605.9293056, + "msecs": 929.3055534362793, + "relativeCreated": 2932.8207969665527, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:56:57,048" + "asctime": "2023-02-15 07:13:25,929" }, { "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.set", @@ -3683,22 +3413,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.0514426, - "msecs": 51.442623138427734, - "relativeCreated": 2947.6850032806396, - "thread": 139894051313216, + "created": 1676441605.9304705, + "msecs": 930.4704666137695, + "relativeCreated": 2933.985710144043, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:56:57,051" + "asctime": "2023-02-15 07:13:25,930" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "on" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"on\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -3710,15 +3440,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954617.0518591, - "msecs": 51.859140396118164, - "relativeCreated": 2948.10152053833, - "thread": 139894051313216, + "created": 1676441605.930659, + "msecs": 930.6590557098389, + "relativeCreated": 2934.1742992401123, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on", - "asctime": "2023-02-09 15:56:57,051" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"on\"}", + "asctime": "2023-02-15 07:13:25,930" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", @@ -3737,22 +3467,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.0524578, - "msecs": 52.45780944824219, - "relativeCreated": 2948.700189590454, - "thread": 139894051313216, + "created": 1676441605.93093, + "msecs": 930.9298992156982, + "relativeCreated": 2934.4451427459717, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:56:57,052" + "asctime": "2023-02-15 07:13:25,930" }, { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"on\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -3764,42 +3494,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.0532117, - "msecs": 53.21168899536133, - "relativeCreated": 2949.4540691375732, - "thread": 139894051313216, + "created": 1676441605.931409, + "msecs": 931.4088821411133, + "relativeCreated": 2934.9241256713867, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:57,053" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954617.053782, - "msecs": 53.781986236572266, - "relativeCreated": 2950.024366378784, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on'", - "asctime": "2023-02-09 15:56:57,053" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:25,931" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -3818,45 +3521,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.0978267, - "msecs": 97.82671928405762, - "relativeCreated": 2994.0690994262695, - "thread": 139894051313216, + "created": 1676441605.9751039, + "msecs": 975.1038551330566, + "relativeCreated": 2978.61909866333, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:56:57,097" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954617.098597, - "msecs": 98.59704971313477, - "relativeCreated": 2994.8394298553467, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:57,098" + "asctime": "2023-02-15 07:13:25,975" } ], - "time_consumption": 0.25103044509887695 + "time_consumption": 0.2545511722564697 }, { "name": "__tLogger__", @@ -3875,15 +3551,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954617.350298, - "msecs": 350.2979278564453, - "relativeCreated": 3246.540307998657, - "thread": 139894075555840, + "created": 1676441606.2304041, + "msecs": 230.40413856506348, + "relativeCreated": 3233.919382095337, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Follower device (zigbee/ffe/diningroom/powerplug_floorlamp) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:57,350", + "asctime": "2023-02-15 07:13:26,230", "moduleLogger": [ { "name": "__unittest__", @@ -3903,15 +3579,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954617.3500493, - "msecs": 350.0492572784424, - "relativeCreated": 3246.2916374206543, - "thread": 139894075555840, + "created": 1676441606.23012, + "msecs": 230.1199436187744, + "relativeCreated": 3233.635187149048, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Follower device (zigbee/ffe/diningroom/powerplug_floorlamp) state): True ()", - "asctime": "2023-02-09 15:56:57,350" + "asctime": "2023-02-15 07:13:26,230" }, { "name": "__unittest__", @@ -3932,18 +3608,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954617.3501885, - "msecs": 350.1884937286377, - "relativeCreated": 3246.4308738708496, - "thread": 139894075555840, + "created": 1676441606.230277, + "msecs": 230.27706146240234, + "relativeCreated": 3233.792304992676, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Follower device (zigbee/ffe/diningroom/powerplug_floorlamp) state): result = True ()", - "asctime": "2023-02-09 15:56:57,350" + "asctime": "2023-02-15 07:13:26,230" } ], - "time_consumption": 0.00010943412780761719 + "time_consumption": 0.0001270771026611328 }, { "name": "__tLogger__", @@ -3961,15 +3637,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off_sync__", - "created": 1675954617.651525, - "msecs": 651.5250205993652, - "relativeCreated": 3547.767400741577, - "thread": 139894075555840, + "created": 1676441606.531936, + "msecs": 531.9359302520752, + "relativeCreated": 3535.4511737823486, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing master device state to 'False'", - "asctime": "2023-02-09 15:56:57,651", + "asctime": "2023-02-15 07:13:26,531", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -3988,15 +3664,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954617.350593, - "msecs": 350.59309005737305, - "relativeCreated": 3246.835470199585, - "thread": 139894075555840, + "created": 1676441606.230767, + "msecs": 230.76701164245605, + "relativeCreated": 3234.2822551727295, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:56:57,350" + "asctime": "2023-02-15 07:13:26,230" }, { "name": "smart_brain.mqtt.shellies.ffe.diningroom.main_light.relay.0", @@ -4015,15 +3691,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.351734, - "msecs": 351.733922958374, - "relativeCreated": 3247.976303100586, - "thread": 139894051313216, + "created": 1676441606.232058, + "msecs": 232.05804824829102, + "relativeCreated": 3235.5732917785645, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:56:57,351" + "asctime": "2023-02-15 07:13:26,232" }, { "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.set", @@ -4042,22 +3718,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.3543541, - "msecs": 354.3541431427002, - "relativeCreated": 3250.596523284912, - "thread": 139894051313216, + "created": 1676441606.2351499, + "msecs": 235.14986038208008, + "relativeCreated": 3238.6651039123535, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:56:57,354" + "asctime": "2023-02-15 07:13:26,235" }, { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "off" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "{\"state\": \"off\"}" ], "levelname": "DEBUG", "levelno": 10, @@ -4069,15 +3745,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954617.354785, - "msecs": 354.7849655151367, - "relativeCreated": 3251.0273456573486, - "thread": 139894051313216, + "created": 1676441606.2356677, + "msecs": 235.66770553588867, + "relativeCreated": 3239.182949066162, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off", - "asctime": "2023-02-09 15:56:57,354" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {\"state\": \"off\"}", + "asctime": "2023-02-15 07:13:26,235" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.state", @@ -4096,22 +3772,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.355395, - "msecs": 355.3950786590576, - "relativeCreated": 3251.6374588012695, - "thread": 139894051313216, + "created": 1676441606.236398, + "msecs": 236.39798164367676, + "relativeCreated": 3239.91322517395, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:57,355" + "asctime": "2023-02-15 07:13:26,236" }, { - "name": "smart_brain.mqtt.videv.ffe.diningroom.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/diningroom/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" + "zigbee/ffe/diningroom/powerplug_floorlamp", + "b'{\"state\": \"off\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -4123,42 +3799,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.3561277, - "msecs": 356.1277389526367, - "relativeCreated": 3252.3701190948486, - "thread": 139894051313216, + "created": 1676441606.2375464, + "msecs": 237.54644393920898, + "relativeCreated": 3241.0616874694824, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:57,356" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.diningroom.powerplug_floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/diningroom/powerplug_floorlamp/state", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954617.3566983, - "msecs": 356.69827461242676, - "relativeCreated": 3252.9406547546387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off'", - "asctime": "2023-02-09 15:56:57,356" + "process": 509276, + "message": "Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:26,237" }, { "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.state", @@ -4177,45 +3826,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.401029, - "msecs": 401.029109954834, - "relativeCreated": 3297.271490097046, - "thread": 139894051313216, + "created": 1676441606.281936, + "msecs": 281.9359302520752, + "relativeCreated": 3285.4511737823486, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:56:57,401" - }, - { - "name": "smart_brain.mqtt.videv.ffe.diningroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/diningroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954617.4017994, - "msecs": 401.79944038391113, - "relativeCreated": 3298.041820526123, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:57,401" + "asctime": "2023-02-15 07:13:26,281" } ], - "time_consumption": 0.2497255802154541 + "time_consumption": 0.25 }, { "name": "__tLogger__", @@ -4234,15 +3856,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954617.6521306, - "msecs": 652.1306037902832, - "relativeCreated": 3548.372983932495, - "thread": 139894075555840, + "created": 1676441606.532673, + "msecs": 532.6728820800781, + "relativeCreated": 3536.1881256103516, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Follower device (zigbee/ffe/diningroom/powerplug_floorlamp) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:57,652", + "asctime": "2023-02-15 07:13:26,532", "moduleLogger": [ { "name": "__unittest__", @@ -4262,15 +3884,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954617.6518822, - "msecs": 651.8821716308594, - "relativeCreated": 3548.1245517730713, - "thread": 139894075555840, + "created": 1676441606.5323946, + "msecs": 532.3946475982666, + "relativeCreated": 3535.90989112854, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Follower device (zigbee/ffe/diningroom/powerplug_floorlamp) state): False ()", - "asctime": "2023-02-09 15:56:57,651" + "asctime": "2023-02-15 07:13:26,532" }, { "name": "__unittest__", @@ -4291,23 +3913,23 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954617.652006, - "msecs": 652.0059108734131, - "relativeCreated": 3548.248291015625, - "thread": 139894075555840, + "created": 1676441606.532549, + "msecs": 532.5489044189453, + "relativeCreated": 3536.0641479492188, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Follower device (zigbee/ffe/diningroom/powerplug_floorlamp) state): result = False ()", - "asctime": "2023-02-09 15:56:57,652" + "asctime": "2023-02-15 07:13:26,532" } ], - "time_consumption": 0.0001246929168701172 + "time_consumption": 0.0001239776611328125 } ], - "time_consumption": 0.9056732654571533, - "time_start": "2023-02-09 15:56:56,746", - "time_finished": "2023-02-09 15:56:57,652" + "time_consumption": 0.9048938751220703, + "time_start": "2023-02-15 07:13:25,627", + "time_finished": "2023-02-15 07:13:26,532" }, "Power On/ Off test for device and virtual device: shellies/ffe/floor/main_light": { "name": "__tLogger__", @@ -4323,15 +3945,15 @@ "stack_info": null, "lineno": 27, "funcName": "test_power_on_off", - "created": 1675954617.6525378, - "msecs": 652.5378227233887, - "relativeCreated": 3548.7802028656006, - "thread": 139894075555840, + "created": 1676441606.533195, + "msecs": 533.1950187683105, + "relativeCreated": 3536.710262298584, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Power On/ Off test for device and virtual device: shellies/ffe/floor/main_light", - "asctime": "2023-02-09 15:56:57,652", + "asctime": "2023-02-15 07:13:26,533", "moduleLogger": [], "testcaseLogger": [ { @@ -4351,15 +3973,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954617.652912, - "msecs": 652.911901473999, - "relativeCreated": 3549.154281616211, - "thread": 139894075555840, + "created": 1676441606.533705, + "msecs": 533.7049961090088, + "relativeCreated": 3537.220239639282, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:57,652", + "asctime": "2023-02-15 07:13:26,533", "moduleLogger": [ { "name": "__unittest__", @@ -4379,15 +4001,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954617.6527283, - "msecs": 652.7283191680908, - "relativeCreated": 3548.9706993103027, - "thread": 139894075555840, + "created": 1676441606.5334706, + "msecs": 533.470630645752, + "relativeCreated": 3536.9858741760254, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:56:57,652" + "asctime": "2023-02-15 07:13:26,533" }, { "name": "__unittest__", @@ -4408,18 +4030,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954617.6528277, - "msecs": 652.8277397155762, - "relativeCreated": 3549.070119857788, - "thread": 139894075555840, + "created": 1676441606.533597, + "msecs": 533.5969924926758, + "relativeCreated": 3537.112236022949, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:56:57,652" + "asctime": "2023-02-15 07:13:26,533" } ], - "time_consumption": 8.416175842285156e-05 + "time_consumption": 0.00010800361633300781 }, { "name": "__tLogger__", @@ -4437,15 +4059,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954617.955008, - "msecs": 955.0080299377441, - "relativeCreated": 3851.250410079956, - "thread": 139894075555840, + "created": 1676441606.8349016, + "msecs": 834.9015712738037, + "relativeCreated": 3838.416814804077, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:56:57,955", + "asctime": "2023-02-15 07:13:26,834", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", @@ -4464,15 +4086,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954617.6531475, - "msecs": 653.1474590301514, - "relativeCreated": 3549.3898391723633, - "thread": 139894075555840, + "created": 1676441606.5339904, + "msecs": 533.9903831481934, + "relativeCreated": 3537.505626678467, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:56:57,653" + "asctime": "2023-02-15 07:13:26,533" }, { "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", @@ -4491,15 +4113,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.6541445, - "msecs": 654.1445255279541, - "relativeCreated": 3550.386905670166, - "thread": 139894051313216, + "created": 1676441606.5352645, + "msecs": 535.2644920349121, + "relativeCreated": 3538.7797355651855, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:56:57,654" + "asctime": "2023-02-15 07:13:26,535" }, { "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state", @@ -4518,45 +4140,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.6559663, - "msecs": 655.9662818908691, - "relativeCreated": 3552.208662033081, - "thread": 139894051313216, + "created": 1676441606.5377324, + "msecs": 537.7323627471924, + "relativeCreated": 3541.247606277466, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:56:57,655" - }, - { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954617.656566, - "msecs": 656.5659046173096, - "relativeCreated": 3552.8082847595215, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:57,656" + "asctime": "2023-02-15 07:13:26,537" } ], - "time_consumption": 0.29844212532043457 + "time_consumption": 0.29716920852661133 }, { "name": "__tLogger__", @@ -4575,15 +4170,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954617.9557655, - "msecs": 955.7654857635498, - "relativeCreated": 3852.0078659057617, - "thread": 139894075555840, + "created": 1676441606.8356667, + "msecs": 835.6666564941406, + "relativeCreated": 3839.181900024414, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:57,955", + "asctime": "2023-02-15 07:13:26,835", "moduleLogger": [ { "name": "__unittest__", @@ -4603,15 +4198,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954617.9554222, - "msecs": 955.4221630096436, - "relativeCreated": 3851.6645431518555, - "thread": 139894075555840, + "created": 1676441606.835387, + "msecs": 835.3869915008545, + "relativeCreated": 3838.902235031128, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:56:57,955" + "asctime": "2023-02-15 07:13:26,835" }, { "name": "__unittest__", @@ -4632,18 +4227,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954617.9555635, - "msecs": 955.5635452270508, - "relativeCreated": 3851.8059253692627, - "thread": 139894075555840, + "created": 1676441606.8355398, + "msecs": 835.5398178100586, + "relativeCreated": 3839.055061340332, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:56:57,955" + "asctime": "2023-02-15 07:13:26,835" } ], - "time_consumption": 0.00020194053649902344 + "time_consumption": 0.00012683868408203125 }, { "name": "__tLogger__", @@ -4662,15 +4257,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954617.9561894, - "msecs": 956.1893939971924, - "relativeCreated": 3852.4317741394043, - "thread": 139894075555840, + "created": 1676441606.836092, + "msecs": 836.0919952392578, + "relativeCreated": 3839.6072387695312, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:57,956", + "asctime": "2023-02-15 07:13:26,836", "moduleLogger": [ { "name": "__unittest__", @@ -4690,15 +4285,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954617.9559896, - "msecs": 955.9895992279053, - "relativeCreated": 3852.231979370117, - "thread": 139894075555840, + "created": 1676441606.8358595, + "msecs": 835.8595371246338, + "relativeCreated": 3839.374780654907, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:56:57,955" + "asctime": "2023-02-15 07:13:26,835" }, { "name": "__unittest__", @@ -4719,18 +4314,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954617.9560955, - "msecs": 956.0954570770264, - "relativeCreated": 3852.3378372192383, - "thread": 139894075555840, + "created": 1676441606.835972, + "msecs": 835.9720706939697, + "relativeCreated": 3839.487314224243, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:56:57,956" + "asctime": "2023-02-15 07:13:26,835" } ], - "time_consumption": 9.393692016601562e-05 + "time_consumption": 0.00011992454528808594 }, { "name": "__tLogger__", @@ -4748,21 +4343,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954618.257327, - "msecs": 257.3270797729492, - "relativeCreated": 4153.569459915161, - "thread": 139894075555840, + "created": 1676441607.1375408, + "msecs": 137.5408172607422, + "relativeCreated": 4141.056060791016, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:56:58,257", + "asctime": "2023-02-15 07:13:27,137", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state", + "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/floor/main_light/state", + "videv/ffe/floor/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -4775,42 +4370,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954617.9564714, - "msecs": 956.4714431762695, - "relativeCreated": 3852.7138233184814, - "thread": 139894075555840, + "created": 1676441606.836424, + "msecs": 836.4241123199463, + "relativeCreated": 3839.9393558502197, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/floor/main_light/state and payload false", - "asctime": "2023-02-09 15:56:57,956" - }, - { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954617.9576373, - "msecs": 957.6373100280762, - "relativeCreated": 3853.879690170288, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:57,957" + "process": 509276, + "message": "Sending message with topic videv/ffe/floor/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:26,836" }, { "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0.command", @@ -4829,15 +4397,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.9592464, - "msecs": 959.2463970184326, - "relativeCreated": 3855.4887771606445, - "thread": 139894051313216, + "created": 1676441606.839819, + "msecs": 839.8189544677734, + "relativeCreated": 3843.334197998047, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/floor/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:56:57,959" + "asctime": "2023-02-15 07:13:26,839" }, { "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", @@ -4856,15 +4424,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954617.9596617, - "msecs": 959.6617221832275, - "relativeCreated": 3855.9041023254395, - "thread": 139894051313216, + "created": 1676441606.8403554, + "msecs": 840.355396270752, + "relativeCreated": 3843.8706398010254, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:56:57,959" + "asctime": "2023-02-15 07:13:26,840" }, { "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", @@ -4883,15 +4451,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954617.9606557, - "msecs": 960.655689239502, - "relativeCreated": 3856.898069381714, - "thread": 139894051313216, + "created": 1676441606.8415265, + "msecs": 841.5265083312988, + "relativeCreated": 3845.0417518615723, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:56:57,960" + "asctime": "2023-02-15 07:13:26,841" }, { "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state", @@ -4910,45 +4478,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954618.0052164, - "msecs": 5.216360092163086, - "relativeCreated": 3901.458740234375, - "thread": 139894051313216, + "created": 1676441606.8851972, + "msecs": 885.1971626281738, + "relativeCreated": 3888.7124061584473, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:58,005" - }, - { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.0059602, - "msecs": 5.960226058959961, - "relativeCreated": 3902.202606201172, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:58,005" + "asctime": "2023-02-15 07:13:26,885" } ], - "time_consumption": 0.25136685371398926 + "time_consumption": 0.25234365463256836 }, { "name": "__tLogger__", @@ -4967,15 +4508,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954618.2579722, - "msecs": 257.97224044799805, - "relativeCreated": 4154.21462059021, - "thread": 139894075555840, + "created": 1676441607.1383283, + "msecs": 138.32831382751465, + "relativeCreated": 4141.843557357788, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:58,257", + "asctime": "2023-02-15 07:13:27,138", "moduleLogger": [ { "name": "__unittest__", @@ -4995,15 +4536,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954618.2577233, - "msecs": 257.723331451416, - "relativeCreated": 4153.965711593628, - "thread": 139894075555840, + "created": 1676441607.1380324, + "msecs": 138.0324363708496, + "relativeCreated": 4141.547679901123, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:56:58,257" + "asctime": "2023-02-15 07:13:27,138" }, { "name": "__unittest__", @@ -5024,18 +4565,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954618.2578616, - "msecs": 257.8616142272949, - "relativeCreated": 4154.103994369507, - "thread": 139894075555840, + "created": 1676441607.1381998, + "msecs": 138.1998062133789, + "relativeCreated": 4141.715049743652, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:56:58,257" + "asctime": "2023-02-15 07:13:27,138" } ], - "time_consumption": 0.000110626220703125 + "time_consumption": 0.0001285076141357422 }, { "name": "__tLogger__", @@ -5054,15 +4595,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954618.258337, - "msecs": 258.33702087402344, - "relativeCreated": 4154.579401016235, - "thread": 139894075555840, + "created": 1676441607.138794, + "msecs": 138.7939453125, + "relativeCreated": 4142.309188842773, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:58,258", + "asctime": "2023-02-15 07:13:27,138", "moduleLogger": [ { "name": "__unittest__", @@ -5082,15 +4623,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954618.2581434, - "msecs": 258.14342498779297, - "relativeCreated": 4154.385805130005, - "thread": 139894075555840, + "created": 1676441607.1385677, + "msecs": 138.56768608093262, + "relativeCreated": 4142.082929611206, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:56:58,258" + "asctime": "2023-02-15 07:13:27,138" }, { "name": "__unittest__", @@ -5111,18 +4652,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954618.2582445, - "msecs": 258.24451446533203, - "relativeCreated": 4154.486894607544, - "thread": 139894075555840, + "created": 1676441607.1386893, + "msecs": 138.6892795562744, + "relativeCreated": 4142.204523086548, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:56:58,258" + "asctime": "2023-02-15 07:13:27,138" } ], - "time_consumption": 9.250640869140625e-05 + "time_consumption": 0.00010466575622558594 }, { "name": "__tLogger__", @@ -5140,15 +4681,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954618.5594208, - "msecs": 559.4208240509033, - "relativeCreated": 4455.663204193115, - "thread": 139894075555840, + "created": 1676441607.440226, + "msecs": 440.22607803344727, + "relativeCreated": 4443.741321563721, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:56:58,559", + "asctime": "2023-02-15 07:13:27,440", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", @@ -5167,15 +4708,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954618.2585676, - "msecs": 258.56757164001465, - "relativeCreated": 4154.809951782227, - "thread": 139894075555840, + "created": 1676441607.1390703, + "msecs": 139.0702724456787, + "relativeCreated": 4142.585515975952, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:56:58,258" + "asctime": "2023-02-15 07:13:27,139" }, { "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", @@ -5194,15 +4735,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954618.2596645, - "msecs": 259.66453552246094, - "relativeCreated": 4155.906915664673, - "thread": 139894051313216, + "created": 1676441607.1403213, + "msecs": 140.3212547302246, + "relativeCreated": 4143.836498260498, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:56:58,259" + "asctime": "2023-02-15 07:13:27,140" }, { "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state", @@ -5221,45 +4762,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954618.2618456, - "msecs": 261.84558868408203, - "relativeCreated": 4158.087968826294, - "thread": 139894051313216, + "created": 1676441607.142763, + "msecs": 142.7628993988037, + "relativeCreated": 4146.278142929077, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:56:58,261" - }, - { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.2625055, - "msecs": 262.50553131103516, - "relativeCreated": 4158.747911453247, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:58,262" + "asctime": "2023-02-15 07:13:27,142" } ], - "time_consumption": 0.29691529273986816 + "time_consumption": 0.29746317863464355 }, { "name": "__tLogger__", @@ -5278,15 +4792,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954618.5601203, - "msecs": 560.1203441619873, - "relativeCreated": 4456.362724304199, - "thread": 139894075555840, + "created": 1676441607.441009, + "msecs": 441.0090446472168, + "relativeCreated": 4444.52428817749, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:58,560", + "asctime": "2023-02-15 07:13:27,441", "moduleLogger": [ { "name": "__unittest__", @@ -5306,15 +4820,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954618.5598335, - "msecs": 559.8335266113281, - "relativeCreated": 4456.07590675354, - "thread": 139894075555840, + "created": 1676441607.4406745, + "msecs": 440.6745433807373, + "relativeCreated": 4444.189786911011, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:56:58,559" + "asctime": "2023-02-15 07:13:27,440" }, { "name": "__unittest__", @@ -5335,18 +4849,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954618.5600092, - "msecs": 560.009241104126, - "relativeCreated": 4456.251621246338, - "thread": 139894075555840, + "created": 1676441607.440869, + "msecs": 440.8690929412842, + "relativeCreated": 4444.384336471558, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:56:58,560" + "asctime": "2023-02-15 07:13:27,440" } ], - "time_consumption": 0.00011110305786132812 + "time_consumption": 0.0001399517059326172 }, { "name": "__tLogger__", @@ -5365,15 +4879,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954618.5604856, - "msecs": 560.4856014251709, - "relativeCreated": 4456.727981567383, - "thread": 139894075555840, + "created": 1676441607.441443, + "msecs": 441.44296646118164, + "relativeCreated": 4444.958209991455, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:58,560", + "asctime": "2023-02-15 07:13:27,441", "moduleLogger": [ { "name": "__unittest__", @@ -5393,15 +4907,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954618.5602975, - "msecs": 560.2974891662598, - "relativeCreated": 4456.539869308472, - "thread": 139894075555840, + "created": 1676441607.4412227, + "msecs": 441.2226676940918, + "relativeCreated": 4444.737911224365, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:56:58,560" + "asctime": "2023-02-15 07:13:27,441" }, { "name": "__unittest__", @@ -5422,15 +4936,802 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954618.5603979, - "msecs": 560.3978633880615, - "relativeCreated": 4456.640243530273, - "thread": 139894075555840, + "created": 1676441607.44134, + "msecs": 441.33996963500977, + "relativeCreated": 4444.855213165283, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:56:58,560" + "asctime": "2023-02-15 07:13:27,441" + } + ], + "time_consumption": 0.000102996826171875 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441607.7428968, + "msecs": 742.8967952728271, + "relativeCreated": 4746.412038803101, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:27,742", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/floor/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441607.4417317, + "msecs": 441.73169136047363, + "relativeCreated": 4445.246934890747, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/floor/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:27,441" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/floor/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441607.4449105, + "msecs": 444.91052627563477, + "relativeCreated": 4448.425769805908, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/floor/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:13:27,444" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/floor/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441607.4454515, + "msecs": 445.4514980316162, + "relativeCreated": 4448.96674156189, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:27,445" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/floor/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441607.4466462, + "msecs": 446.64621353149414, + "relativeCreated": 4450.161457061768, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:27,446" + }, + { + "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/floor/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441607.4899635, + "msecs": 489.9635314941406, + "relativeCreated": 4493.478775024414, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:27,489" + } + ], + "time_consumption": 0.2529332637786865 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441607.743693, + "msecs": 743.6931133270264, + "relativeCreated": 4747.2083568573, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:27,743", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441607.743359, + "msecs": 743.3590888977051, + "relativeCreated": 4746.8743324279785, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:27,743" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441607.7435129, + "msecs": 743.5128688812256, + "relativeCreated": 4747.028112411499, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:27,743" + } + ], + "time_consumption": 0.00018024444580078125 + } + ], + "time_consumption": 1.2104980945587158, + "time_start": "2023-02-15 07:13:26,533", + "time_finished": "2023-02-15 07:13:27,743" + }, + "Power On/ Off test for device and virtual device: shellies/ffe/kitchen/circulation_pump": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: shellies/ffe/kitchen/circulation_pump", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441607.7442377, + "msecs": 744.2376613616943, + "relativeCreated": 4747.752904891968, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: shellies/ffe/kitchen/circulation_pump", + "asctime": "2023-02-15 07:13:27,744", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441607.7447042, + "msecs": 744.7042465209961, + "relativeCreated": 4748.2194900512695, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:27,744", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441607.7444696, + "msecs": 744.4696426391602, + "relativeCreated": 4747.984886169434, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:27,744" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441607.7445953, + "msecs": 744.5952892303467, + "relativeCreated": 4748.11053276062, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:27,744" + } + ], + "time_consumption": 0.00010895729064941406 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441608.046759, + "msecs": 46.75889015197754, + "relativeCreated": 5050.274133682251, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:28,046", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/kitchen/circulation_pump/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441607.744991, + "msecs": 744.9910640716553, + "relativeCreated": 4748.506307601929, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload on", + "asctime": "2023-02-15 07:13:27,744" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/kitchen/circulation_pump/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441607.7468712, + "msecs": 746.8712329864502, + "relativeCreated": 4750.386476516724, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:27,746" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.timer", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/circulation_pump/timer", + "b'600'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441607.7516665, + "msecs": 751.6665458679199, + "relativeCreated": 4755.181789398193, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'600'", + "asctime": "2023-02-15 07:13:27,751" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/kitchen/main_light/relay/0/command", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441607.7521074, + "msecs": 752.1073818206787, + "relativeCreated": 4755.622625350952, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on'", + "asctime": "2023-02-15 07:13:27,752" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/kitchen/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441607.752246, + "msecs": 752.2459030151367, + "relativeCreated": 4755.76114654541, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:27,752" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/circulation_pump/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441607.7524533, + "msecs": 752.4533271789551, + "relativeCreated": 4755.9685707092285, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'true'", + "asctime": "2023-02-15 07:13:27,752" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/kitchen/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441607.7528148, + "msecs": 752.814769744873, + "relativeCreated": 4756.3300132751465, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:27,752" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441607.7973971, + "msecs": 797.3971366882324, + "relativeCreated": 4800.912380218506, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:27,797" + } + ], + "time_consumption": 0.24936175346374512 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441608.0473962, + "msecs": 47.396183013916016, + "relativeCreated": 5050.911426544189, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:28,047", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441608.0471601, + "msecs": 47.16014862060547, + "relativeCreated": 5050.675392150879, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:28,047" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441608.0472922, + "msecs": 47.292232513427734, + "relativeCreated": 5050.807476043701, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:28,047" + } + ], + "time_consumption": 0.00010395050048828125 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441608.0477479, + "msecs": 47.74785041809082, + "relativeCreated": 5051.263093948364, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:28,047", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441608.0475638, + "msecs": 47.563791275024414, + "relativeCreated": 5051.079034805298, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:28,047" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441608.04766, + "msecs": 47.660112380981445, + "relativeCreated": 5051.175355911255, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:28,047" } ], "time_consumption": 8.7738037109375e-05 @@ -5451,21 +5752,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954618.8616138, - "msecs": 861.6137504577637, - "relativeCreated": 4757.856130599976, - "thread": 139894075555840, + "created": 1676441608.3489285, + "msecs": 348.92845153808594, + "relativeCreated": 5352.443695068359, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:56:58,861", + "asctime": "2023-02-15 07:13:28,348", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state", + "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/floor/main_light/state", + "videv/ffe/kitchen/circulation_pump/state/set", "false" ], "levelname": "DEBUG", @@ -5478,964 +5779,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954618.5607693, - "msecs": 560.7693195343018, - "relativeCreated": 4457.011699676514, - "thread": 139894075555840, + "created": 1676441608.0480325, + "msecs": 48.032522201538086, + "relativeCreated": 5051.5477657318115, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/floor/main_light/state and payload false", - "asctime": "2023-02-09 15:56:58,560" - }, - { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.5619957, - "msecs": 561.9957447052002, - "relativeCreated": 4458.238124847412, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:58,561" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/floor/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.5635262, - "msecs": 563.5261535644531, - "relativeCreated": 4459.768533706665, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/floor/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:56:58,563" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954618.564474, - "msecs": 564.4741058349609, - "relativeCreated": 4460.716485977173, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/floor/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:56:58,564" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.5654852, - "msecs": 565.4852390289307, - "relativeCreated": 4461.727619171143, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/floor/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:56:58,565" - }, - { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.6095595, - "msecs": 609.5595359802246, - "relativeCreated": 4505.8019161224365, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:58,609" - }, - { - "name": "smart_brain.mqtt.videv.ffe.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.6102812, - "msecs": 610.281229019165, - "relativeCreated": 4506.523609161377, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:58,610" - } - ], - "time_consumption": 0.25133252143859863 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954618.8624203, - "msecs": 862.4203205108643, - "relativeCreated": 4758.662700653076, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:58,862", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954618.8620555, - "msecs": 862.0555400848389, - "relativeCreated": 4758.297920227051, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:56:58,862" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954618.862248, - "msecs": 862.2479438781738, - "relativeCreated": 4758.490324020386, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:56:58,862" - } - ], - "time_consumption": 0.0001723766326904297 - } - ], - "time_consumption": 1.2098824977874756, - "time_start": "2023-02-09 15:56:57,652", - "time_finished": "2023-02-09 15:56:58,862" - }, - "Power On/ Off test for device and virtual device: shellies/ffe/kitchen/circulation_pump": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: shellies/ffe/kitchen/circulation_pump", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954618.8630393, - "msecs": 863.0392551422119, - "relativeCreated": 4759.281635284424, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: shellies/ffe/kitchen/circulation_pump", - "asctime": "2023-02-09 15:56:58,863", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954618.8636599, - "msecs": 863.6598587036133, - "relativeCreated": 4759.902238845825, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:58,863", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954618.8633304, - "msecs": 863.3303642272949, - "relativeCreated": 4759.572744369507, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:56:58,863" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954618.8635008, - "msecs": 863.5008335113525, - "relativeCreated": 4759.743213653564, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:56:58,863" - } - ], - "time_consumption": 0.0001590251922607422 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954619.1664321, - "msecs": 166.43214225769043, - "relativeCreated": 5062.674522399902, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:56:59,166", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/kitchen/circulation_pump/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954618.864019, - "msecs": 864.0189170837402, - "relativeCreated": 4760.261297225952, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload on", - "asctime": "2023-02-09 15:56:58,864" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/kitchen/circulation_pump/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.8654191, - "msecs": 865.4191493988037, - "relativeCreated": 4761.661529541016, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:56:58,865" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/timer", - "b'600'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.8704922, - "msecs": 870.4922199249268, - "relativeCreated": 4766.734600067139, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'600'", - "asctime": "2023-02-09 15:56:58,870" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/__info__", - "b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.8711424, - "msecs": 871.1423873901367, - "relativeCreated": 4767.384767532349, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'", - "asctime": "2023-02-09 15:56:58,871" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/kitchen/main_light/relay/0/command", - "b'toggle'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.8717082, - "msecs": 871.7081546783447, - "relativeCreated": 4767.950534820557, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'toggle'", - "asctime": "2023-02-09 15:56:58,871" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/kitchen/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954618.8720438, - "msecs": 872.0438480377197, - "relativeCreated": 4768.286228179932, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:56:58,872" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.8725834, - "msecs": 872.5833892822266, - "relativeCreated": 4768.8257694244385, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'true'", - "asctime": "2023-02-09 15:56:58,872" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/__info__", - "b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.8733065, - "msecs": 873.3065128326416, - "relativeCreated": 4769.5488929748535, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'", - "asctime": "2023-02-09 15:56:58,873" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/kitchen/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.8738267, - "msecs": 873.8267421722412, - "relativeCreated": 4770.069122314453, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:56:58,873" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.9175644, - "msecs": 917.5643920898438, - "relativeCreated": 4813.806772232056, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:56:58,917" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954618.9183884, - "msecs": 918.3883666992188, - "relativeCreated": 4814.630746841431, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:58,918" - } - ], - "time_consumption": 0.24804377555847168 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954619.167021, - "msecs": 167.0210361480713, - "relativeCreated": 5063.263416290283, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:59,167", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954619.1668024, - "msecs": 166.80240631103516, - "relativeCreated": 5063.044786453247, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:56:59,166" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954619.1669233, - "msecs": 166.92328453063965, - "relativeCreated": 5063.165664672852, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:56:59,166" - } - ], - "time_consumption": 9.775161743164062e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954619.167401, - "msecs": 167.40107536315918, - "relativeCreated": 5063.643455505371, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:59,167", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954619.1672091, - "msecs": 167.20914840698242, - "relativeCreated": 5063.451528549194, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:56:59,167" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954619.167309, - "msecs": 167.30904579162598, - "relativeCreated": 5063.551425933838, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:56:59,167" - } - ], - "time_consumption": 9.202957153320312e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954619.4685292, - "msecs": 468.52922439575195, - "relativeCreated": 5364.771604537964, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:56:59,468", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954619.1676514, - "msecs": 167.65141487121582, - "relativeCreated": 5063.893795013428, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state and payload false", - "asctime": "2023-02-09 15:56:59,167" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.1686268, - "msecs": 168.6267852783203, - "relativeCreated": 5064.869165420532, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", - "asctime": "2023-02-09 15:56:59,168" + "process": 509276, + "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload false", + "asctime": "2023-02-15 07:13:28,048" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0.command", @@ -6454,15 +5806,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.1702409, - "msecs": 170.2408790588379, - "relativeCreated": 5066.48325920105, - "thread": 139894051313216, + "created": 1676441608.051776, + "msecs": 51.77593231201172, + "relativeCreated": 5055.291175842285, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:56:59,170" + "asctime": "2023-02-15 07:13:28,051" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", @@ -6481,15 +5833,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954619.1707516, - "msecs": 170.75157165527344, - "relativeCreated": 5066.993951797485, - "thread": 139894051313216, + "created": 1676441608.0522413, + "msecs": 52.24132537841797, + "relativeCreated": 5055.756568908691, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload off", - "asctime": "2023-02-09 15:56:59,170" + "asctime": "2023-02-15 07:13:28,052" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0.command", @@ -6508,15 +5860,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.1713126, - "msecs": 171.3125705718994, - "relativeCreated": 5067.554950714111, - "thread": 139894051313216, + "created": 1676441608.052886, + "msecs": 52.886009216308594, + "relativeCreated": 5056.401252746582, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:56:59,171" + "asctime": "2023-02-15 07:13:28,052" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -6535,15 +5887,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954619.1716409, - "msecs": 171.64087295532227, - "relativeCreated": 5067.883253097534, - "thread": 139894051313216, + "created": 1676441608.0532997, + "msecs": 53.299665451049805, + "relativeCreated": 5056.814908981323, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:56:59,171" + "asctime": "2023-02-15 07:13:28,053" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", @@ -6562,15 +5914,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.1724405, - "msecs": 172.4405288696289, - "relativeCreated": 5068.682909011841, - "thread": 139894051313216, + "created": 1676441608.0542388, + "msecs": 54.23879623413086, + "relativeCreated": 5057.754039764404, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:56:59,172" + "asctime": "2023-02-15 07:13:28,054" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -6589,15 +5941,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.1730137, - "msecs": 173.01368713378906, - "relativeCreated": 5069.256067276001, - "thread": 139894051313216, + "created": 1676441608.0549815, + "msecs": 54.98147010803223, + "relativeCreated": 5058.496713638306, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:56:59,173" + "asctime": "2023-02-15 07:13:28,054" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.timer", @@ -6616,42 +5968,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.2186234, - "msecs": 218.62339973449707, - "relativeCreated": 5114.865779876709, - "thread": 139894051313216, + "created": 1676441608.0996552, + "msecs": 99.6551513671875, + "relativeCreated": 5103.170394897461, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'0'", - "asctime": "2023-02-09 15:56:59,218" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/__info__", - "b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.2629094, - "msecs": 262.9094123840332, - "relativeCreated": 5159.151792526245, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'", - "asctime": "2023-02-09 15:56:59,262" + "asctime": "2023-02-15 07:13:28,099" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", @@ -6670,42 +5995,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.263615, - "msecs": 263.6148929595947, - "relativeCreated": 5159.857273101807, - "thread": 139894051313216, + "created": 1676441608.14349, + "msecs": 143.49007606506348, + "relativeCreated": 5147.005319595337, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", - "asctime": "2023-02-09 15:56:59,263" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/__info__", - "b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.2642498, - "msecs": 264.2498016357422, - "relativeCreated": 5160.492181777954, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'", - "asctime": "2023-02-09 15:56:59,264" + "asctime": "2023-02-15 07:13:28,143" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", @@ -6724,45 +6022,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.2647488, - "msecs": 264.74881172180176, - "relativeCreated": 5160.991191864014, - "thread": 139894051313216, + "created": 1676441608.144302, + "msecs": 144.3018913269043, + "relativeCreated": 5147.817134857178, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:59,264" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.2653143, - "msecs": 265.31434059143066, - "relativeCreated": 5161.556720733643, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:59,265" + "asctime": "2023-02-15 07:13:28,144" } ], - "time_consumption": 0.2032148838043213 + "time_consumption": 0.20462656021118164 }, { "name": "__tLogger__", @@ -6781,15 +6052,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954619.4691715, - "msecs": 469.17152404785156, - "relativeCreated": 5365.4139041900635, - "thread": 139894075555840, + "created": 1676441608.3492177, + "msecs": 349.21765327453613, + "relativeCreated": 5352.73289680481, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:59,469", + "asctime": "2023-02-15 07:13:28,349", "moduleLogger": [ { "name": "__unittest__", @@ -6809,15 +6080,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954619.468901, - "msecs": 468.9009189605713, - "relativeCreated": 5365.143299102783, - "thread": 139894075555840, + "created": 1676441608.3491285, + "msecs": 349.12848472595215, + "relativeCreated": 5352.643728256226, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:56:59,468" + "asctime": "2023-02-15 07:13:28,349" }, { "name": "__unittest__", @@ -6838,18 +6109,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954619.4690201, - "msecs": 469.02012825012207, - "relativeCreated": 5365.262508392334, - "thread": 139894075555840, + "created": 1676441608.3491783, + "msecs": 349.1783142089844, + "relativeCreated": 5352.693557739258, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:56:59,469" + "asctime": "2023-02-15 07:13:28,349" } ], - "time_consumption": 0.0001513957977294922 + "time_consumption": 3.933906555175781e-05 }, { "name": "__tLogger__", @@ -6868,15 +6139,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954619.4694974, - "msecs": 469.4974422454834, - "relativeCreated": 5365.739822387695, - "thread": 139894075555840, + "created": 1676441608.3493724, + "msecs": 349.37238693237305, + "relativeCreated": 5352.8876304626465, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:56:59,469", + "asctime": "2023-02-15 07:13:28,349", "moduleLogger": [ { "name": "__unittest__", @@ -6896,15 +6167,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954619.4693313, - "msecs": 469.3312644958496, - "relativeCreated": 5365.5736446380615, - "thread": 139894075555840, + "created": 1676441608.3493001, + "msecs": 349.3001461029053, + "relativeCreated": 5352.815389633179, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:56:59,469" + "asctime": "2023-02-15 07:13:28,349" }, { "name": "__unittest__", @@ -6925,18 +6196,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954619.4694192, - "msecs": 469.4192409515381, - "relativeCreated": 5365.66162109375, - "thread": 139894075555840, + "created": 1676441608.3493366, + "msecs": 349.3366241455078, + "relativeCreated": 5352.851867675781, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:56:59,469" + "asctime": "2023-02-15 07:13:28,349" } ], - "time_consumption": 7.82012939453125e-05 + "time_consumption": 3.5762786865234375e-05 }, { "name": "__tLogger__", @@ -6954,15 +6225,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954619.77121, - "msecs": 771.2099552154541, - "relativeCreated": 5667.452335357666, - "thread": 139894075555840, + "created": 1676441608.650744, + "msecs": 650.7439613342285, + "relativeCreated": 5654.259204864502, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:56:59,771", + "asctime": "2023-02-15 07:13:28,650", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", @@ -6981,15 +6252,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954619.4697356, - "msecs": 469.73562240600586, - "relativeCreated": 5365.978002548218, - "thread": 139894075555840, + "created": 1676441608.3494701, + "msecs": 349.4701385498047, + "relativeCreated": 5352.985382080078, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload on", - "asctime": "2023-02-09 15:56:59,469" + "asctime": "2023-02-15 07:13:28,349" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", @@ -7008,15 +6279,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.4713564, - "msecs": 471.3563919067383, - "relativeCreated": 5367.59877204895, - "thread": 139894051313216, + "created": 1676441608.3503296, + "msecs": 350.3296375274658, + "relativeCreated": 5353.844881057739, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:56:59,471" + "asctime": "2023-02-15 07:13:28,350" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.timer", @@ -7035,49 +6306,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.4748356, - "msecs": 474.8356342315674, - "relativeCreated": 5371.078014373779, - "thread": 139894051313216, + "created": 1676441608.3518362, + "msecs": 351.8362045288086, + "relativeCreated": 5355.351448059082, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'600'", - "asctime": "2023-02-09 15:56:59,474" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/__info__", - "b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.5182278, - "msecs": 518.2278156280518, - "relativeCreated": 5414.470195770264, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'", - "asctime": "2023-02-09 15:56:59,518" + "asctime": "2023-02-15 07:13:28,351" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0.command", "msg": "Received message with topic %s and payload %s", "args": [ "shellies/ffe/kitchen/main_light/relay/0/command", - "b'toggle'" + "b'on'" ], "levelname": "DEBUG", "levelno": 10, @@ -7089,15 +6333,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.5189092, - "msecs": 518.909215927124, - "relativeCreated": 5415.151596069336, - "thread": 139894051313216, + "created": 1676441608.3521085, + "msecs": 352.1084785461426, + "relativeCreated": 5355.623722076416, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'toggle'", - "asctime": "2023-02-09 15:56:59,518" + "process": 509276, + "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on'", + "asctime": "2023-02-15 07:13:28,352" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -7116,15 +6360,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954619.5192657, - "msecs": 519.2656517028809, - "relativeCreated": 5415.508031845093, - "thread": 139894051313216, + "created": 1676441608.3522599, + "msecs": 352.25987434387207, + "relativeCreated": 5355.7751178741455, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:56:59,519" + "asctime": "2023-02-15 07:13:28,352" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", @@ -7143,42 +6387,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.5198154, - "msecs": 519.8154449462891, - "relativeCreated": 5416.057825088501, - "thread": 139894051313216, + "created": 1676441608.3524835, + "msecs": 352.48351097106934, + "relativeCreated": 5355.998754501343, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'true'", - "asctime": "2023-02-09 15:56:59,519" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/__info__", - "b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.520459, - "msecs": 520.4589366912842, - "relativeCreated": 5416.701316833496, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'", - "asctime": "2023-02-09 15:56:59,520" + "asctime": "2023-02-15 07:13:28,352" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -7197,15 +6414,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.5209572, - "msecs": 520.9572315216064, - "relativeCreated": 5417.199611663818, - "thread": 139894051313216, + "created": 1676441608.3528028, + "msecs": 352.8027534484863, + "relativeCreated": 5356.31799697876, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:56:59,520" + "asctime": "2023-02-15 07:13:28,352" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", @@ -7224,45 +6441,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.5653255, - "msecs": 565.3254985809326, - "relativeCreated": 5461.5678787231445, - "thread": 139894051313216, + "created": 1676441608.397339, + "msecs": 397.3391056060791, + "relativeCreated": 5400.8543491363525, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:56:59,565" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.5660157, - "msecs": 566.0157203674316, - "relativeCreated": 5462.258100509644, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:59,566" + "asctime": "2023-02-15 07:13:28,397" } ], - "time_consumption": 0.20519423484802246 + "time_consumption": 0.2534048557281494 }, { "name": "__tLogger__", @@ -7281,15 +6471,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954619.7719114, - "msecs": 771.9113826751709, - "relativeCreated": 5668.153762817383, - "thread": 139894075555840, + "created": 1676441608.6515594, + "msecs": 651.5593528747559, + "relativeCreated": 5655.074596405029, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:59,771", + "asctime": "2023-02-15 07:13:28,651", "moduleLogger": [ { "name": "__unittest__", @@ -7309,15 +6499,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954619.7716231, - "msecs": 771.6231346130371, - "relativeCreated": 5667.865514755249, - "thread": 139894075555840, + "created": 1676441608.651204, + "msecs": 651.2041091918945, + "relativeCreated": 5654.719352722168, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:56:59,771" + "asctime": "2023-02-15 07:13:28,651" }, { "name": "__unittest__", @@ -7338,18 +6528,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954619.7718003, - "msecs": 771.8002796173096, - "relativeCreated": 5668.0426597595215, - "thread": 139894075555840, + "created": 1676441608.6513767, + "msecs": 651.3767242431641, + "relativeCreated": 5654.8919677734375, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:56:59,771" + "asctime": "2023-02-15 07:13:28,651" } ], - "time_consumption": 0.00011110305786132812 + "time_consumption": 0.00018262863159179688 }, { "name": "__tLogger__", @@ -7368,15 +6558,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954619.7722816, - "msecs": 772.2816467285156, - "relativeCreated": 5668.5240268707275, - "thread": 139894075555840, + "created": 1676441608.6519954, + "msecs": 651.9954204559326, + "relativeCreated": 5655.510663986206, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:56:59,772", + "asctime": "2023-02-15 07:13:28,651", "moduleLogger": [ { "name": "__unittest__", @@ -7396,15 +6586,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954619.7720902, - "msecs": 772.0901966094971, - "relativeCreated": 5668.332576751709, - "thread": 139894075555840, + "created": 1676441608.6517727, + "msecs": 651.7727375030518, + "relativeCreated": 5655.287981033325, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:56:59,772" + "asctime": "2023-02-15 07:13:28,651" }, { "name": "__unittest__", @@ -7425,18 +6615,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954619.7721918, - "msecs": 772.1917629241943, - "relativeCreated": 5668.434143066406, - "thread": 139894075555840, + "created": 1676441608.6518917, + "msecs": 651.8917083740234, + "relativeCreated": 5655.406951904297, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:56:59,772" + "asctime": "2023-02-15 07:13:28,651" } ], - "time_consumption": 8.988380432128906e-05 + "time_consumption": 0.00010371208190917969 }, { "name": "__tLogger__", @@ -7454,21 +6644,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954620.0733137, - "msecs": 73.31371307373047, - "relativeCreated": 5969.556093215942, - "thread": 139894075555840, + "created": 1676441608.9531834, + "msecs": 953.1834125518799, + "relativeCreated": 5956.698656082153, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:00,073", + "asctime": "2023-02-15 07:13:28,953", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", + "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/kitchen/circulation_pump/state", + "videv/ffe/kitchen/circulation_pump/state/set", "false" ], "levelname": "DEBUG", @@ -7481,96 +6671,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954619.772557, - "msecs": 772.5570201873779, - "relativeCreated": 5668.79940032959, - "thread": 139894075555840, + "created": 1676441608.6522903, + "msecs": 652.2903442382812, + "relativeCreated": 5655.805587768555, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state and payload false", - "asctime": "2023-02-09 15:56:59,772" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.7736456, - "msecs": 773.6456394195557, - "relativeCreated": 5669.888019561768, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", - "asctime": "2023-02-09 15:56:59,773" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/kitchen/circulation_pump/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.7759447, - "msecs": 775.944709777832, - "relativeCreated": 5672.187089920044, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:56:59,775" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/kitchen/circulation_pump/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954619.776374, - "msecs": 776.374101638794, - "relativeCreated": 5672.616481781006, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload off", - "asctime": "2023-02-09 15:56:59,776" + "process": 509276, + "message": "Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload false", + "asctime": "2023-02-15 07:13:28,652" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0.command", @@ -7589,15 +6698,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.777024, - "msecs": 777.0240306854248, - "relativeCreated": 5673.266410827637, - "thread": 139894051313216, + "created": 1676441608.6533377, + "msecs": 653.3377170562744, + "relativeCreated": 5656.852960586548, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:56:59,777" + "asctime": "2023-02-15 07:13:28,653" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -7616,42 +6725,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954619.7774558, - "msecs": 777.4558067321777, - "relativeCreated": 5673.69818687439, - "thread": 139894051313216, + "created": 1676441608.6539054, + "msecs": 653.9053916931152, + "relativeCreated": 5657.420635223389, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:56:59,777" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/kitchen/circulation_pump/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.778392, - "msecs": 778.3920764923096, - "relativeCreated": 5674.6344566345215, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:56:59,778" + "asctime": "2023-02-15 07:13:28,653" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -7670,22 +6752,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.7790601, - "msecs": 779.0601253509521, - "relativeCreated": 5675.302505493164, - "thread": 139894051313216, + "created": 1676441608.695582, + "msecs": 695.5819129943848, + "relativeCreated": 5699.097156524658, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:56:59,779" + "asctime": "2023-02-15 07:13:28,695" }, { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.timer", + "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0.command", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/kitchen/circulation_pump/timer", - "b'0'" + "shellies/ffe/kitchen/circulation_pump/relay/0/command", + "b'off'" ], "levelname": "DEBUG", "levelno": 10, @@ -7697,22 +6779,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.8223827, - "msecs": 822.3826885223389, - "relativeCreated": 5718.625068664551, - "thread": 139894051313216, + "created": 1676441608.6991665, + "msecs": 699.1665363311768, + "relativeCreated": 5702.68177986145, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'0'", - "asctime": "2023-02-09 15:56:59,822" + "process": 509276, + "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:13:28,699" }, { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.__info__", - "msg": "Received message with topic %s and payload %s", + "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", + "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/kitchen/circulation_pump/__info__", - "b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'" + "shellies/ffe/kitchen/circulation_pump/relay/0", + "off" ], "levelname": "DEBUG", "levelno": 10, @@ -7722,71 +6804,17 @@ "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.8661072, - "msecs": 866.1072254180908, - "relativeCreated": 5762.349605560303, - "thread": 139894051313216, + "lineno": 75, + "funcName": "send", + "created": 1676441608.6997216, + "msecs": 699.7215747833252, + "relativeCreated": 5703.236818313599, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'", - "asctime": "2023-02-09 15:56:59,866" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.8668578, - "msecs": 866.8577671051025, - "relativeCreated": 5763.100147247314, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", - "asctime": "2023-02-09 15:56:59,866" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/circulation_pump/__info__", - "b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954619.8675518, - "msecs": 867.5518035888672, - "relativeCreated": 5763.794183731079, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{\"__type__\": \"videv_switching_timer\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}}'", - "asctime": "2023-02-09 15:56:59,867" + "process": 509276, + "message": "Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload off", + "asctime": "2023-02-15 07:13:28,699" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", @@ -7805,22 +6833,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.8681471, - "msecs": 868.1471347808838, - "relativeCreated": 5764.389514923096, - "thread": 139894051313216, + "created": 1676441608.7010279, + "msecs": 701.0278701782227, + "relativeCreated": 5704.543113708496, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:56:59,868" + "asctime": "2023-02-15 07:13:28,701" }, { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.__info__", + "name": "smart_brain.mqtt.shellies.ffe.kitchen.circulation_pump.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/kitchen/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" + "shellies/ffe/kitchen/circulation_pump/relay/0", + "b'off'" ], "levelname": "DEBUG", "levelno": 10, @@ -7832,18 +6860,72 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954619.8687794, - "msecs": 868.7794208526611, - "relativeCreated": 5765.021800994873, - "thread": 139894051313216, + "created": 1676441608.702217, + "msecs": 702.2171020507812, + "relativeCreated": 5705.732345581055, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:56:59,868" + "process": 509276, + "message": "Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:28,702" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.timer", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/circulation_pump/timer", + "b'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441608.743461, + "msecs": 743.4608936309814, + "relativeCreated": 5746.976137161255, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'0'", + "asctime": "2023-02-15 07:13:28,743" + }, + { + "name": "smart_brain.mqtt.videv.ffe.kitchen.circulation_pump.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/kitchen/circulation_pump/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441608.747636, + "msecs": 747.636079788208, + "relativeCreated": 5751.151323318481, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false'", + "asctime": "2023-02-15 07:13:28,747" } ], - "time_consumption": 0.20453429222106934 + "time_consumption": 0.20554733276367188 }, { "name": "__tLogger__", @@ -7862,15 +6944,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954620.0738955, - "msecs": 73.89545440673828, - "relativeCreated": 5970.13783454895, - "thread": 139894075555840, + "created": 1676441608.95382, + "msecs": 953.819990158081, + "relativeCreated": 5957.3352336883545, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:00,073", + "asctime": "2023-02-15 07:13:28,953", "moduleLogger": [ { "name": "__unittest__", @@ -7890,15 +6972,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954620.0736783, - "msecs": 73.67825508117676, - "relativeCreated": 5969.920635223389, - "thread": 139894075555840, + "created": 1676441608.9535818, + "msecs": 953.5818099975586, + "relativeCreated": 5957.097053527832, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:00,073" + "asctime": "2023-02-15 07:13:28,953" }, { "name": "__unittest__", @@ -7919,23 +7001,23 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954620.0738008, - "msecs": 73.80080223083496, - "relativeCreated": 5970.043182373047, - "thread": 139894075555840, + "created": 1676441608.9537134, + "msecs": 953.7134170532227, + "relativeCreated": 5957.228660583496, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:00,073" + "asctime": "2023-02-15 07:13:28,953" } ], - "time_consumption": 9.465217590332031e-05 + "time_consumption": 0.00010657310485839844 } ], - "time_consumption": 1.2108561992645264, - "time_start": "2023-02-09 15:56:58,863", - "time_finished": "2023-02-09 15:57:00,073" + "time_consumption": 1.2095823287963867, + "time_start": "2023-02-15 07:13:27,744", + "time_finished": "2023-02-15 07:13:28,953" }, "Power On/ Off test for device and virtual device: shellies/ffe/kitchen/main_light": { "name": "__tLogger__", @@ -7951,15 +7033,15 @@ "stack_info": null, "lineno": 27, "funcName": "test_power_on_off", - "created": 1675954620.0743096, - "msecs": 74.3095874786377, - "relativeCreated": 5970.55196762085, - "thread": 139894075555840, + "created": 1676441608.9542797, + "msecs": 954.2796611785889, + "relativeCreated": 5957.794904708862, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Power On/ Off test for device and virtual device: shellies/ffe/kitchen/main_light", - "asctime": "2023-02-09 15:57:00,074", + "asctime": "2023-02-15 07:13:28,954", "moduleLogger": [], "testcaseLogger": [ { @@ -7979,15 +7061,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954620.0746706, - "msecs": 74.67055320739746, - "relativeCreated": 5970.912933349609, - "thread": 139894075555840, + "created": 1676441608.954709, + "msecs": 954.7090530395508, + "relativeCreated": 5958.224296569824, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:00,074", + "asctime": "2023-02-15 07:13:28,954", "moduleLogger": [ { "name": "__unittest__", @@ -8007,15 +7089,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954620.0744927, - "msecs": 74.4926929473877, - "relativeCreated": 5970.7350730896, - "thread": 139894075555840, + "created": 1676441608.9545038, + "msecs": 954.5037746429443, + "relativeCreated": 5958.019018173218, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:00,074" + "asctime": "2023-02-15 07:13:28,954" }, { "name": "__unittest__", @@ -8036,18 +7118,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954620.074588, - "msecs": 74.58806037902832, - "relativeCreated": 5970.83044052124, - "thread": 139894075555840, + "created": 1676441608.9546156, + "msecs": 954.615592956543, + "relativeCreated": 5958.130836486816, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:00,074" + "asctime": "2023-02-15 07:13:28,954" } ], - "time_consumption": 8.249282836914062e-05 + "time_consumption": 9.34600830078125e-05 }, { "name": "__tLogger__", @@ -8065,15 +7147,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954620.3767362, - "msecs": 376.7361640930176, - "relativeCreated": 6272.9785442352295, - "thread": 139894075555840, + "created": 1676441609.2560368, + "msecs": 256.03675842285156, + "relativeCreated": 6259.552001953125, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:00,376", + "asctime": "2023-02-15 07:13:29,256", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -8092,15 +7174,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954620.0748672, - "msecs": 74.86724853515625, - "relativeCreated": 5971.109628677368, - "thread": 139894075555840, + "created": 1676441608.9549384, + "msecs": 954.9384117126465, + "relativeCreated": 5958.45365524292, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:00,074" + "asctime": "2023-02-15 07:13:28,954" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -8119,15 +7201,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954620.0758252, - "msecs": 75.82521438598633, - "relativeCreated": 5972.067594528198, - "thread": 139894051313216, + "created": 1676441608.955993, + "msecs": 955.9929370880127, + "relativeCreated": 5959.508180618286, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:00,075" + "asctime": "2023-02-15 07:13:28,955" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", @@ -8146,45 +7228,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954620.0777988, - "msecs": 77.79884338378906, - "relativeCreated": 5974.041223526001, - "thread": 139894051313216, + "created": 1676441608.9580626, + "msecs": 958.0626487731934, + "relativeCreated": 5961.577892303467, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:00,077" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954620.078381, - "msecs": 78.38106155395508, - "relativeCreated": 5974.623441696167, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:00,078" + "asctime": "2023-02-15 07:13:28,958" } ], - "time_consumption": 0.2983551025390625 + "time_consumption": 0.2979741096496582 }, { "name": "__tLogger__", @@ -8203,15 +7258,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954620.3773675, - "msecs": 377.3674964904785, - "relativeCreated": 6273.60987663269, - "thread": 139894075555840, + "created": 1676441609.256759, + "msecs": 256.7589282989502, + "relativeCreated": 6260.274171829224, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:00,377", + "asctime": "2023-02-15 07:13:29,256", "moduleLogger": [ { "name": "__unittest__", @@ -8231,15 +7286,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954620.3771248, - "msecs": 377.1247863769531, - "relativeCreated": 6273.367166519165, - "thread": 139894075555840, + "created": 1676441609.2564845, + "msecs": 256.4845085144043, + "relativeCreated": 6259.999752044678, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:00,377" + "asctime": "2023-02-15 07:13:29,256" }, { "name": "__unittest__", @@ -8260,18 +7315,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954620.3772466, - "msecs": 377.246618270874, - "relativeCreated": 6273.488998413086, - "thread": 139894075555840, + "created": 1676441609.2566352, + "msecs": 256.6351890563965, + "relativeCreated": 6260.15043258667, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:00,377" + "asctime": "2023-02-15 07:13:29,256" } ], - "time_consumption": 0.00012087821960449219 + "time_consumption": 0.00012373924255371094 }, { "name": "__tLogger__", @@ -8290,15 +7345,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954620.3777065, - "msecs": 377.70652770996094, - "relativeCreated": 6273.948907852173, - "thread": 139894075555840, + "created": 1676441609.2571776, + "msecs": 257.17759132385254, + "relativeCreated": 6260.692834854126, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:00,377", + "asctime": "2023-02-15 07:13:29,257", "moduleLogger": [ { "name": "__unittest__", @@ -8318,15 +7373,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954620.377523, - "msecs": 377.52294540405273, - "relativeCreated": 6273.765325546265, - "thread": 139894075555840, + "created": 1676441609.2569597, + "msecs": 256.9596767425537, + "relativeCreated": 6260.474920272827, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:00,377" + "asctime": "2023-02-15 07:13:29,256" }, { "name": "__unittest__", @@ -8347,18 +7402,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954620.3776271, - "msecs": 377.6271343231201, - "relativeCreated": 6273.869514465332, - "thread": 139894075555840, + "created": 1676441609.2570736, + "msecs": 257.07364082336426, + "relativeCreated": 6260.588884353638, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:00,377" + "asctime": "2023-02-15 07:13:29,257" } ], - "time_consumption": 7.939338684082031e-05 + "time_consumption": 0.00010395050048828125 }, { "name": "__tLogger__", @@ -8376,21 +7431,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954620.6790366, - "msecs": 679.0366172790527, - "relativeCreated": 6575.278997421265, - "thread": 139894075555840, + "created": 1676441609.5585816, + "msecs": 558.5815906524658, + "relativeCreated": 6562.096834182739, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:00,679", + "asctime": "2023-02-15 07:13:29,558", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", + "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/kitchen/main_light/state", + "videv/ffe/kitchen/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -8403,42 +7458,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954620.3779504, - "msecs": 377.95042991638184, - "relativeCreated": 6274.192810058594, - "thread": 139894075555840, + "created": 1676441609.2575457, + "msecs": 257.54570960998535, + "relativeCreated": 6261.060953140259, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/kitchen/main_light/state and payload false", - "asctime": "2023-02-09 15:57:00,377" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954620.3789082, - "msecs": 378.9081573486328, - "relativeCreated": 6275.150537490845, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:00,378" + "process": 509276, + "message": "Sending message with topic videv/ffe/kitchen/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:29,257" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0.command", @@ -8457,15 +7485,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954620.380372, - "msecs": 380.3720474243164, - "relativeCreated": 6276.614427566528, - "thread": 139894051313216, + "created": 1676441609.2608619, + "msecs": 260.861873626709, + "relativeCreated": 6264.377117156982, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:00,380" + "asctime": "2023-02-15 07:13:29,260" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -8484,15 +7512,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954620.3807414, - "msecs": 380.7413578033447, - "relativeCreated": 6276.983737945557, - "thread": 139894051313216, + "created": 1676441609.261407, + "msecs": 261.40689849853516, + "relativeCreated": 6264.922142028809, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:00,380" + "asctime": "2023-02-15 07:13:29,261" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -8511,15 +7539,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954620.3816204, - "msecs": 381.6204071044922, - "relativeCreated": 6277.862787246704, - "thread": 139894051313216, + "created": 1676441609.2625923, + "msecs": 262.5923156738281, + "relativeCreated": 6266.107559204102, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:00,381" + "asctime": "2023-02-15 07:13:29,262" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", @@ -8538,45 +7566,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954620.4255621, - "msecs": 425.56214332580566, - "relativeCreated": 6321.804523468018, - "thread": 139894051313216, + "created": 1676441609.3059506, + "msecs": 305.9506416320801, + "relativeCreated": 6309.4658851623535, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:00,425" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954620.4262903, - "msecs": 426.29027366638184, - "relativeCreated": 6322.532653808594, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:00,426" + "asctime": "2023-02-15 07:13:29,305" } ], - "time_consumption": 0.2527463436126709 + "time_consumption": 0.25263094902038574 }, { "name": "__tLogger__", @@ -8595,15 +7596,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954620.67976, - "msecs": 679.7599792480469, - "relativeCreated": 6576.002359390259, - "thread": 139894075555840, + "created": 1676441609.5593185, + "msecs": 559.3185424804688, + "relativeCreated": 6562.833786010742, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:00,679", + "asctime": "2023-02-15 07:13:29,559", "moduleLogger": [ { "name": "__unittest__", @@ -8623,15 +7624,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954620.6794655, - "msecs": 679.4655323028564, - "relativeCreated": 6575.707912445068, - "thread": 139894075555840, + "created": 1676441609.5590434, + "msecs": 559.0434074401855, + "relativeCreated": 6562.558650970459, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:00,679" + "asctime": "2023-02-15 07:13:29,559" }, { "name": "__unittest__", @@ -8652,18 +7653,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954620.6796107, - "msecs": 679.6107292175293, - "relativeCreated": 6575.853109359741, - "thread": 139894075555840, + "created": 1676441609.559194, + "msecs": 559.1940879821777, + "relativeCreated": 6562.709331512451, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:00,679" + "asctime": "2023-02-15 07:13:29,559" } ], - "time_consumption": 0.00014925003051757812 + "time_consumption": 0.00012445449829101562 }, { "name": "__tLogger__", @@ -8682,15 +7683,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954620.6801436, - "msecs": 680.1435947418213, - "relativeCreated": 6576.385974884033, - "thread": 139894075555840, + "created": 1676441609.5597587, + "msecs": 559.7586631774902, + "relativeCreated": 6563.273906707764, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:00,680", + "asctime": "2023-02-15 07:13:29,559", "moduleLogger": [ { "name": "__unittest__", @@ -8710,15 +7711,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954620.679938, - "msecs": 679.9380779266357, - "relativeCreated": 6576.180458068848, - "thread": 139894075555840, + "created": 1676441609.5595121, + "msecs": 559.5121383666992, + "relativeCreated": 6563.027381896973, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:00,679" + "asctime": "2023-02-15 07:13:29,559" }, { "name": "__unittest__", @@ -8739,18 +7740,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954620.6800392, - "msecs": 680.0391674041748, - "relativeCreated": 6576.281547546387, - "thread": 139894075555840, + "created": 1676441609.5596247, + "msecs": 559.6246719360352, + "relativeCreated": 6563.139915466309, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:00,680" + "asctime": "2023-02-15 07:13:29,559" } ], - "time_consumption": 0.00010442733764648438 + "time_consumption": 0.00013399124145507812 }, { "name": "__tLogger__", @@ -8768,15 +7769,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954620.98126, - "msecs": 981.2600612640381, - "relativeCreated": 6877.50244140625, - "thread": 139894075555840, + "created": 1676441609.8612008, + "msecs": 861.2008094787598, + "relativeCreated": 6864.716053009033, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:00,981", + "asctime": "2023-02-15 07:13:29,861", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -8795,15 +7796,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954620.6803775, - "msecs": 680.3774833679199, - "relativeCreated": 6576.619863510132, - "thread": 139894075555840, + "created": 1676441609.5600376, + "msecs": 560.0376129150391, + "relativeCreated": 6563.5528564453125, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:00,680" + "asctime": "2023-02-15 07:13:29,560" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -8822,15 +7823,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954620.681487, - "msecs": 681.4870834350586, - "relativeCreated": 6577.7294635772705, - "thread": 139894051313216, + "created": 1676441609.5613012, + "msecs": 561.3012313842773, + "relativeCreated": 6564.816474914551, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:00,681" + "asctime": "2023-02-15 07:13:29,561" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", @@ -8849,45 +7850,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954620.6841612, - "msecs": 684.1611862182617, - "relativeCreated": 6580.403566360474, - "thread": 139894051313216, + "created": 1676441609.5642974, + "msecs": 564.2974376678467, + "relativeCreated": 6567.81268119812, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:00,684" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954620.6848269, - "msecs": 684.8268508911133, - "relativeCreated": 6581.069231033325, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:00,684" + "asctime": "2023-02-15 07:13:29,564" } ], - "time_consumption": 0.2964332103729248 + "time_consumption": 0.2969033718109131 }, { "name": "__tLogger__", @@ -8906,15 +7880,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954620.9819412, - "msecs": 981.9412231445312, - "relativeCreated": 6878.183603286743, - "thread": 139894075555840, + "created": 1676441609.8619545, + "msecs": 861.9544506072998, + "relativeCreated": 6865.469694137573, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:00,981", + "asctime": "2023-02-15 07:13:29,861", "moduleLogger": [ { "name": "__unittest__", @@ -8934,15 +7908,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954620.9816651, - "msecs": 981.6651344299316, - "relativeCreated": 6877.907514572144, - "thread": 139894075555840, + "created": 1676441609.8616831, + "msecs": 861.6831302642822, + "relativeCreated": 6865.198373794556, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:00,981" + "asctime": "2023-02-15 07:13:29,861" }, { "name": "__unittest__", @@ -8963,18 +7937,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954620.9818027, - "msecs": 981.8027019500732, - "relativeCreated": 6878.045082092285, - "thread": 139894075555840, + "created": 1676441609.8618338, + "msecs": 861.8338108062744, + "relativeCreated": 6865.349054336548, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:00,981" + "asctime": "2023-02-15 07:13:29,861" } ], - "time_consumption": 0.0001385211944580078 + "time_consumption": 0.00012063980102539062 }, { "name": "__tLogger__", @@ -8993,15 +7967,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954620.982332, - "msecs": 982.3319911956787, - "relativeCreated": 6878.574371337891, - "thread": 139894075555840, + "created": 1676441609.8623621, + "msecs": 862.3621463775635, + "relativeCreated": 6865.877389907837, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:00,982", + "asctime": "2023-02-15 07:13:29,862", "moduleLogger": [ { "name": "__unittest__", @@ -9021,15 +7995,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954620.9821372, - "msecs": 982.1372032165527, - "relativeCreated": 6878.379583358765, - "thread": 139894075555840, + "created": 1676441609.8621492, + "msecs": 862.1492385864258, + "relativeCreated": 6865.664482116699, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:00,982" + "asctime": "2023-02-15 07:13:29,862" }, { "name": "__unittest__", @@ -9050,18 +8024,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954620.9822414, - "msecs": 982.2413921356201, - "relativeCreated": 6878.483772277832, - "thread": 139894075555840, + "created": 1676441609.8622606, + "msecs": 862.2605800628662, + "relativeCreated": 6865.77582359314, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:00,982" + "asctime": "2023-02-15 07:13:29,862" } ], - "time_consumption": 9.059906005859375e-05 + "time_consumption": 0.00010156631469726562 }, { "name": "__tLogger__", @@ -9079,21 +8053,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954621.2836854, - "msecs": 283.68544578552246, - "relativeCreated": 7179.927825927734, - "thread": 139894075555840, + "created": 1676441610.1639001, + "msecs": 163.90013694763184, + "relativeCreated": 7167.415380477905, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:01,283", + "asctime": "2023-02-15 07:13:30,163", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", + "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/kitchen/main_light/state", + "videv/ffe/kitchen/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -9106,42 +8080,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954620.9826052, - "msecs": 982.6052188873291, - "relativeCreated": 6878.847599029541, - "thread": 139894075555840, + "created": 1676441609.86277, + "msecs": 862.7700805664062, + "relativeCreated": 6866.28532409668, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/kitchen/main_light/state and payload false", - "asctime": "2023-02-09 15:57:00,982" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954620.9837074, - "msecs": 983.7074279785156, - "relativeCreated": 6879.9498081207275, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:00,983" + "process": 509276, + "message": "Sending message with topic videv/ffe/kitchen/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:29,862" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0.command", @@ -9160,15 +8107,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954620.9853547, - "msecs": 985.3546619415283, - "relativeCreated": 6881.59704208374, - "thread": 139894051313216, + "created": 1676441609.8659348, + "msecs": 865.9348487854004, + "relativeCreated": 6869.450092315674, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:00,985" + "asctime": "2023-02-15 07:13:29,865" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -9187,15 +8134,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954620.9857416, - "msecs": 985.7416152954102, - "relativeCreated": 6881.983995437622, - "thread": 139894051313216, + "created": 1676441609.8665495, + "msecs": 866.5494918823242, + "relativeCreated": 6870.064735412598, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/ffe/kitchen/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:00,985" + "asctime": "2023-02-15 07:13:29,866" }, { "name": "smart_brain.mqtt.shellies.ffe.kitchen.main_light.relay.0", @@ -9214,15 +8161,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954620.9866104, - "msecs": 986.6104125976562, - "relativeCreated": 6882.852792739868, - "thread": 139894051313216, + "created": 1676441609.8677192, + "msecs": 867.7191734313965, + "relativeCreated": 6871.23441696167, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:00,986" + "asctime": "2023-02-15 07:13:29,867" }, { "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.state", @@ -9241,45 +8188,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954621.0295386, - "msecs": 29.538631439208984, - "relativeCreated": 6925.781011581421, - "thread": 139894051313216, + "created": 1676441609.9110863, + "msecs": 911.0863208770752, + "relativeCreated": 6914.601564407349, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/kitchen/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:01,029" - }, - { - "name": "smart_brain.mqtt.videv.ffe.kitchen.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/kitchen/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.0301833, - "msecs": 30.18331527709961, - "relativeCreated": 6926.4256954193115, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:01,030" + "asctime": "2023-02-15 07:13:29,911" } ], - "time_consumption": 0.25350213050842285 + "time_consumption": 0.25281381607055664 }, { "name": "__tLogger__", @@ -9298,15 +8218,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954621.284308, - "msecs": 284.30795669555664, - "relativeCreated": 7180.550336837769, - "thread": 139894075555840, + "created": 1676441610.1645572, + "msecs": 164.55721855163574, + "relativeCreated": 7168.072462081909, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:01,284", + "asctime": "2023-02-15 07:13:30,164", "moduleLogger": [ { "name": "__unittest__", @@ -9326,15 +8246,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954621.284055, - "msecs": 284.0549945831299, - "relativeCreated": 7180.297374725342, - "thread": 139894075555840, + "created": 1676441610.1643224, + "msecs": 164.3223762512207, + "relativeCreated": 7167.837619781494, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:01,284" + "asctime": "2023-02-15 07:13:30,164" }, { "name": "__unittest__", @@ -9355,23 +8275,23 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954621.2842102, - "msecs": 284.210205078125, - "relativeCreated": 7180.452585220337, - "thread": 139894075555840, + "created": 1676441610.1644526, + "msecs": 164.45255279541016, + "relativeCreated": 7167.967796325684, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:01,284" + "asctime": "2023-02-15 07:13:30,164" } ], - "time_consumption": 9.775161743164062e-05 + "time_consumption": 0.00010466575622558594 } ], - "time_consumption": 1.209998369216919, - "time_start": "2023-02-09 15:57:00,074", - "time_finished": "2023-02-09 15:57:01,284" + "time_consumption": 1.2102775573730469, + "time_start": "2023-02-15 07:13:28,954", + "time_finished": "2023-02-15 07:13:30,164" }, "Brightness test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1": { "name": "__tLogger__", @@ -9387,15 +8307,15 @@ "stack_info": null, "lineno": 50, "funcName": "test_brightness", - "created": 1675954621.2847364, - "msecs": 284.73639488220215, - "relativeCreated": 7180.978775024414, - "thread": 139894075555840, + "created": 1676441610.1650267, + "msecs": 165.02666473388672, + "relativeCreated": 7168.54190826416, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Brightness test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1", - "asctime": "2023-02-09 15:57:01,284", + "asctime": "2023-02-15 07:13:30,165", "moduleLogger": [], "testcaseLogger": [ { @@ -9412,22 +8332,22 @@ "stack_info": null, "lineno": 57, "funcName": "__test_brightness__", - "created": 1675954621.5865624, - "msecs": 586.5623950958252, - "relativeCreated": 7482.804775238037, - "thread": 139894075555840, + "created": 1676441610.466563, + "msecs": 466.56298637390137, + "relativeCreated": 7470.078229904175, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:01,586", + "asctime": "2023-02-15 07:13:30,466", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Sending message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -9439,22 +8359,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954621.285146, - "msecs": 285.14599800109863, - "relativeCreated": 7181.388378143311, - "thread": 139894075555840, + "created": 1676441610.165438, + "msecs": 165.4379367828369, + "relativeCreated": 7168.95318031311, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:01,285" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:30,165" }, { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Received message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -9466,15 +8386,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954621.286125, - "msecs": 286.12494468688965, - "relativeCreated": 7182.367324829102, - "thread": 139894051313216, + "created": 1676441610.1665692, + "msecs": 166.56923294067383, + "relativeCreated": 7170.084476470947, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:01,286" + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:30,166" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", @@ -9493,49 +8413,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954621.2897255, - "msecs": 289.72554206848145, - "relativeCreated": 7185.967922210693, - "thread": 139894051313216, + "created": 1676441610.1702766, + "msecs": 170.27664184570312, + "relativeCreated": 7173.791885375977, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:01,289" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.2903469, - "msecs": 290.3468608856201, - "relativeCreated": 7186.589241027832, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:01,290" + "asctime": "2023-02-15 07:13:30,170" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", "msg": "Received message with topic %s and payload %s", "args": [ "videv/ffe/livingroom/floorlamp/brightness", - "b'50.0'" + "b'50'" ], "levelname": "DEBUG", "levelno": 10, @@ -9547,49 +8440,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954621.290895, - "msecs": 290.8949851989746, - "relativeCreated": 7187.1373653411865, - "thread": 139894051313216, + "created": 1676441610.171028, + "msecs": 171.02789878845215, + "relativeCreated": 7174.543142318726, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:01,290" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.2914126, - "msecs": 291.4125919342041, - "relativeCreated": 7187.654972076416, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:01,291" + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:30,171" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", "msg": "Received message with topic %s and payload %s", "args": [ "videv/ffe/livingroom/floorlamp/color_temp", - "b'5.0'" + "b'5'" ], "levelname": "DEBUG", "levelno": 10, @@ -9601,45 +8467,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954621.2919385, - "msecs": 291.93854331970215, - "relativeCreated": 7188.180923461914, - "thread": 139894051313216, + "created": 1676441610.1716821, + "msecs": 171.68211936950684, + "relativeCreated": 7175.19736289978, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:01,291" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.2928822, - "msecs": 292.88220405578613, - "relativeCreated": 7189.124584197998, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:01,292" + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:30,171" } ], - "time_consumption": 0.29368019104003906 + "time_consumption": 0.29488086700439453 }, { "name": "__tLogger__", @@ -9658,15 +8497,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954621.5872047, - "msecs": 587.2046947479248, - "relativeCreated": 7483.447074890137, - "thread": 139894075555840, + "created": 1676441610.4673207, + "msecs": 467.32068061828613, + "relativeCreated": 7470.83592414856, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:01,587", + "asctime": "2023-02-15 07:13:30,467", "moduleLogger": [ { "name": "__unittest__", @@ -9686,15 +8525,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954621.5869567, - "msecs": 586.9567394256592, - "relativeCreated": 7483.199119567871, - "thread": 139894075555840, + "created": 1676441610.4670026, + "msecs": 467.00263023376465, + "relativeCreated": 7470.517873764038, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:01,586" + "asctime": "2023-02-15 07:13:30,467" }, { "name": "__unittest__", @@ -9715,18 +8554,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954621.587095, - "msecs": 587.0950222015381, - "relativeCreated": 7483.33740234375, - "thread": 139894075555840, + "created": 1676441610.4671586, + "msecs": 467.15855598449707, + "relativeCreated": 7470.6737995147705, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:01,587" + "asctime": "2023-02-15 07:13:30,467" } ], - "time_consumption": 0.00010967254638671875 + "time_consumption": 0.0001621246337890625 }, { "name": "__tLogger__", @@ -9744,22 +8583,22 @@ "stack_info": null, "lineno": 63, "funcName": "__test_brightness__", - "created": 1675954621.8887236, - "msecs": 888.723611831665, - "relativeCreated": 7784.965991973877, - "thread": 139894075555840, + "created": 1676441610.7689192, + "msecs": 768.9192295074463, + "relativeCreated": 7772.43447303772, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:01,888", + "asctime": "2023-02-15 07:13:30,768", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Sending message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -9771,22 +8610,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954621.5875607, - "msecs": 587.5606536865234, - "relativeCreated": 7483.803033828735, - "thread": 139894075555840, + "created": 1676441610.4677384, + "msecs": 467.73838996887207, + "relativeCreated": 7471.2536334991455, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:01,587" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:30,467" }, { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Received message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -9798,22 +8637,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954621.5886562, - "msecs": 588.6561870574951, - "relativeCreated": 7484.898567199707, - "thread": 139894051313216, + "created": 1676441610.4690142, + "msecs": 469.01416778564453, + "relativeCreated": 7472.529411315918, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:01,588" + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:30,469" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", "msg": "Received message with topic %s and payload %s", "args": [ "videv/ffe/livingroom/floorlamp/brightness", - "b'65.0'" + "b'65'" ], "levelname": "DEBUG", "levelno": 10, @@ -9825,45 +8664,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954621.591281, - "msecs": 591.2809371948242, - "relativeCreated": 7487.523317337036, - "thread": 139894051313216, + "created": 1676441610.4716036, + "msecs": 471.6036319732666, + "relativeCreated": 7475.11887550354, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:01,591" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.5919626, - "msecs": 591.9625759124756, - "relativeCreated": 7488.2049560546875, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:01,591" + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'65'", + "asctime": "2023-02-15 07:13:30,471" } ], - "time_consumption": 0.29676103591918945 + "time_consumption": 0.2973155975341797 }, { "name": "__tLogger__", @@ -9882,15 +8694,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954621.8895864, - "msecs": 889.5864486694336, - "relativeCreated": 7785.8288288116455, - "thread": 139894075555840, + "created": 1676441610.7697818, + "msecs": 769.7818279266357, + "relativeCreated": 7773.297071456909, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:01,889", + "asctime": "2023-02-15 07:13:30,769", "moduleLogger": [ { "name": "__unittest__", @@ -9910,15 +8722,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954621.8893209, - "msecs": 889.3208503723145, - "relativeCreated": 7785.563230514526, - "thread": 139894075555840, + "created": 1676441610.7694802, + "msecs": 769.4802284240723, + "relativeCreated": 7772.995471954346, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:01,889" + "asctime": "2023-02-15 07:13:30,769" }, { "name": "__unittest__", @@ -9939,18 +8751,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954621.8894744, - "msecs": 889.4743919372559, - "relativeCreated": 7785.716772079468, - "thread": 139894075555840, + "created": 1676441610.7696357, + "msecs": 769.6356773376465, + "relativeCreated": 7773.15092086792, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:01,889" + "asctime": "2023-02-15 07:13:30,769" } ], - "time_consumption": 0.00011205673217773438 + "time_consumption": 0.0001461505889892578 }, { "name": "__tLogger__", @@ -9969,15 +8781,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954621.8899775, - "msecs": 889.9774551391602, - "relativeCreated": 7786.219835281372, - "thread": 139894075555840, + "created": 1676441610.7702053, + "msecs": 770.2052593231201, + "relativeCreated": 7773.720502853394, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:01,889", + "asctime": "2023-02-15 07:13:30,770", "moduleLogger": [ { "name": "__unittest__", @@ -9997,15 +8809,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954621.8897846, - "msecs": 889.784574508667, - "relativeCreated": 7786.026954650879, - "thread": 139894075555840, + "created": 1676441610.7699845, + "msecs": 769.9844837188721, + "relativeCreated": 7773.4997272491455, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:01,889" + "asctime": "2023-02-15 07:13:30,769" }, { "name": "__unittest__", @@ -10026,18 +8838,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954621.8898861, - "msecs": 889.8861408233643, - "relativeCreated": 7786.128520965576, - "thread": 139894075555840, + "created": 1676441610.7700946, + "msecs": 770.094633102417, + "relativeCreated": 7773.60987663269, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:01,889" + "asctime": "2023-02-15 07:13:30,770" } ], - "time_consumption": 9.131431579589844e-05 + "time_consumption": 0.000110626220703125 }, { "name": "__tLogger__", @@ -10055,21 +8867,21 @@ "stack_info": null, "lineno": 69, "funcName": "__test_brightness__", - "created": 1675954622.1922095, - "msecs": 192.20948219299316, - "relativeCreated": 8088.451862335205, - "thread": 139894075555840, + "created": 1676441611.0715725, + "msecs": 71.57254219055176, + "relativeCreated": 8075.087785720825, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:02,192", + "asctime": "2023-02-15 07:13:31,071", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/livingroom/floorlamp/brightness", + "videv/ffe/livingroom/floorlamp/brightness/set", "50" ], "levelname": "DEBUG", @@ -10082,15 +8894,231 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954621.8902676, - "msecs": 890.2676105499268, - "relativeCreated": 7786.509990692139, - "thread": 139894075555840, + "created": 1676441610.7706254, + "msecs": 770.6253528594971, + "relativeCreated": 7774.1405963897705, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness and payload 50", - "asctime": "2023-02-09 15:57:01,890" + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 50", + "asctime": "2023-02-15 07:13:30,770" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441610.777081, + "msecs": 777.0810127258301, + "relativeCreated": 7780.5962562561035, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:30,777" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441610.7773893, + "msecs": 777.3892879486084, + "relativeCreated": 7780.904531478882, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:30,777" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441610.7776237, + "msecs": 777.6236534118652, + "relativeCreated": 7781.138896942139, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:30,777" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441610.7778852, + "msecs": 777.8851985931396, + "relativeCreated": 7781.400442123413, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:30,777" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441610.7780862, + "msecs": 778.0861854553223, + "relativeCreated": 7781.601428985596, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:30,778" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441610.8194098, + "msecs": 819.4098472595215, + "relativeCreated": 7822.925090789795, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:30,819" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441610.8202991, + "msecs": 820.2991485595703, + "relativeCreated": 7823.814392089844, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:30,820" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441610.8209972, + "msecs": 820.9972381591797, + "relativeCreated": 7824.512481689453, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:30,820" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", @@ -10109,288 +9137,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954621.8913128, - "msecs": 891.312837600708, - "relativeCreated": 7787.55521774292, - "thread": 139894051313216, + "created": 1676441610.823277, + "msecs": 823.2769966125488, + "relativeCreated": 7826.792240142822, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:01,891" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.8950233, - "msecs": 895.0233459472656, - "relativeCreated": 7791.2657260894775, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:01,895" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954621.8954911, - "msecs": 895.4911231994629, - "relativeCreated": 7791.733503341675, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:01,895" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.896, - "msecs": 895.9999084472656, - "relativeCreated": 7792.2422885894775, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:01,895" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.8966074, - "msecs": 896.6073989868164, - "relativeCreated": 7792.849779129028, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:01,896" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.8971448, - "msecs": 897.1447944641113, - "relativeCreated": 7793.387174606323, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:01,897" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.8976371, - "msecs": 897.637128829956, - "relativeCreated": 7793.879508972168, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:01,897" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.8981059, - "msecs": 898.1058597564697, - "relativeCreated": 7794.348239898682, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:01,898" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.898565, - "msecs": 898.5650539398193, - "relativeCreated": 7794.807434082031, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:01,898" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.9422388, - "msecs": 942.2388076782227, - "relativeCreated": 7838.481187820435, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:01,942" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954621.9429278, - "msecs": 942.9278373718262, - "relativeCreated": 7839.170217514038, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:01,942" + "asctime": "2023-02-15 07:13:30,823" } ], - "time_consumption": 0.249281644821167 + "time_consumption": 0.24829554557800293 }, { "name": "__tLogger__", @@ -10409,15 +9167,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954622.1928697, - "msecs": 192.8696632385254, - "relativeCreated": 8089.112043380737, - "thread": 139894075555840, + "created": 1676441611.07225, + "msecs": 72.2498893737793, + "relativeCreated": 8075.765132904053, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:02,192", + "asctime": "2023-02-15 07:13:31,072", "moduleLogger": [ { "name": "__unittest__", @@ -10437,15 +9195,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954622.1926231, - "msecs": 192.62313842773438, - "relativeCreated": 8088.865518569946, - "thread": 139894075555840, + "created": 1676441611.0719748, + "msecs": 71.9747543334961, + "relativeCreated": 8075.4899978637695, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:02,192" + "asctime": "2023-02-15 07:13:31,071" }, { "name": "__unittest__", @@ -10466,18 +9224,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954622.1927617, - "msecs": 192.76165962219238, - "relativeCreated": 8089.004039764404, - "thread": 139894075555840, + "created": 1676441611.0721047, + "msecs": 72.10469245910645, + "relativeCreated": 8075.61993598938, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:02,192" + "asctime": "2023-02-15 07:13:31,072" } ], - "time_consumption": 0.00010800361633300781 + "time_consumption": 0.00014519691467285156 }, { "name": "__tLogger__", @@ -10496,15 +9254,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954622.193298, - "msecs": 193.2981014251709, - "relativeCreated": 8089.540481567383, - "thread": 139894075555840, + "created": 1676441611.0726206, + "msecs": 72.62063026428223, + "relativeCreated": 8076.135873794556, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:02,193", + "asctime": "2023-02-15 07:13:31,072", "moduleLogger": [ { "name": "__unittest__", @@ -10524,15 +9282,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954622.193073, - "msecs": 193.07303428649902, - "relativeCreated": 8089.315414428711, - "thread": 139894075555840, + "created": 1676441611.0724318, + "msecs": 72.43180274963379, + "relativeCreated": 8075.947046279907, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:02,193" + "asctime": "2023-02-15 07:13:31,072" }, { "name": "__unittest__", @@ -10553,18 +9311,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954622.1932092, - "msecs": 193.20917129516602, - "relativeCreated": 8089.451551437378, - "thread": 139894075555840, + "created": 1676441611.072533, + "msecs": 72.53289222717285, + "relativeCreated": 8076.048135757446, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:02,193" + "asctime": "2023-02-15 07:13:31,072" } ], - "time_consumption": 8.893013000488281e-05 + "time_consumption": 8.7738037109375e-05 }, { "name": "__tLogger__", @@ -10582,22 +9340,22 @@ "stack_info": null, "lineno": 63, "funcName": "__test_brightness__", - "created": 1675954622.4946342, - "msecs": 494.63415145874023, - "relativeCreated": 8390.876531600952, - "thread": 139894075555840, + "created": 1676441611.3738122, + "msecs": 373.812198638916, + "relativeCreated": 8377.32744216919, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:02,494", + "asctime": "2023-02-15 07:13:31,373", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Sending message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -10609,22 +9367,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954622.1936417, - "msecs": 193.64166259765625, - "relativeCreated": 8089.884042739868, - "thread": 139894075555840, + "created": 1676441611.0729632, + "msecs": 72.96323776245117, + "relativeCreated": 8076.478481292725, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:02,193" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:31,072" }, { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Received message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -10636,22 +9394,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954622.1947305, - "msecs": 194.7305202484131, - "relativeCreated": 8090.972900390625, - "thread": 139894051313216, + "created": 1676441611.074053, + "msecs": 74.05304908752441, + "relativeCreated": 8077.568292617798, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:02,194" + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:31,074" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", "msg": "Received message with topic %s and payload %s", "args": [ "videv/ffe/livingroom/floorlamp/brightness", - "b'65.0'" + "b'65'" ], "levelname": "DEBUG", "levelno": 10, @@ -10663,45 +9421,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954622.1973412, - "msecs": 197.3412036895752, - "relativeCreated": 8093.583583831787, - "thread": 139894051313216, + "created": 1676441611.0762672, + "msecs": 76.26724243164062, + "relativeCreated": 8079.782485961914, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:02,197" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.1980217, - "msecs": 198.02165031433105, - "relativeCreated": 8094.264030456543, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:02,198" + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'65'", + "asctime": "2023-02-15 07:13:31,076" } ], - "time_consumption": 0.2966125011444092 + "time_consumption": 0.2975449562072754 }, { "name": "__tLogger__", @@ -10720,15 +9451,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954622.4952106, - "msecs": 495.2106475830078, - "relativeCreated": 8391.45302772522, - "thread": 139894075555840, + "created": 1676441611.374525, + "msecs": 374.5250701904297, + "relativeCreated": 8378.040313720703, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:02,495", + "asctime": "2023-02-15 07:13:31,374", "moduleLogger": [ { "name": "__unittest__", @@ -10748,15 +9479,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954622.494995, - "msecs": 494.9951171875, - "relativeCreated": 8391.237497329712, - "thread": 139894075555840, + "created": 1676441611.374236, + "msecs": 374.2361068725586, + "relativeCreated": 8377.751350402832, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:02,494" + "asctime": "2023-02-15 07:13:31,374" }, { "name": "__unittest__", @@ -10777,18 +9508,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954622.4951165, - "msecs": 495.1164722442627, - "relativeCreated": 8391.358852386475, - "thread": 139894075555840, + "created": 1676441611.3743742, + "msecs": 374.3741512298584, + "relativeCreated": 8377.889394760132, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:02,495" + "asctime": "2023-02-15 07:13:31,374" } ], - "time_consumption": 9.417533874511719e-05 + "time_consumption": 0.00015091896057128906 }, { "name": "__tLogger__", @@ -10807,15 +9538,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954622.4955595, - "msecs": 495.5594539642334, - "relativeCreated": 8391.801834106445, - "thread": 139894075555840, + "created": 1676441611.3750021, + "msecs": 375.0021457672119, + "relativeCreated": 8378.517389297485, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:02,495", + "asctime": "2023-02-15 07:13:31,375", "moduleLogger": [ { "name": "__unittest__", @@ -10835,15 +9566,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954622.4953585, - "msecs": 495.3584671020508, - "relativeCreated": 8391.600847244263, - "thread": 139894075555840, + "created": 1676441611.3747323, + "msecs": 374.73225593566895, + "relativeCreated": 8378.247499465942, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:02,495" + "asctime": "2023-02-15 07:13:31,374" }, { "name": "__unittest__", @@ -10864,18 +9595,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954622.4954803, - "msecs": 495.4802989959717, - "relativeCreated": 8391.722679138184, - "thread": 139894075555840, + "created": 1676441611.3748991, + "msecs": 374.89914894104004, + "relativeCreated": 8378.414392471313, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:02,495" + "asctime": "2023-02-15 07:13:31,374" } ], - "time_consumption": 7.915496826171875e-05 + "time_consumption": 0.000102996826171875 }, { "name": "__tLogger__", @@ -10893,21 +9624,21 @@ "stack_info": null, "lineno": 69, "funcName": "__test_brightness__", - "created": 1675954622.7977085, - "msecs": 797.7085113525391, - "relativeCreated": 8693.950891494751, - "thread": 139894075555840, + "created": 1676441611.67641, + "msecs": 676.4099597930908, + "relativeCreated": 8679.925203323364, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:02,797", + "asctime": "2023-02-15 07:13:31,676", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/livingroom/floorlamp/brightness", + "videv/ffe/livingroom/floorlamp/brightness/set", "50" ], "levelname": "DEBUG", @@ -10920,15 +9651,231 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954622.4958186, - "msecs": 495.8186149597168, - "relativeCreated": 8392.060995101929, - "thread": 139894075555840, + "created": 1676441611.3753128, + "msecs": 375.31280517578125, + "relativeCreated": 8378.828048706055, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness and payload 50", - "asctime": "2023-02-09 15:57:02,495" + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 50", + "asctime": "2023-02-15 07:13:31,375" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441611.3811305, + "msecs": 381.1304569244385, + "relativeCreated": 8384.645700454712, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:31,381" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441611.3815596, + "msecs": 381.5596103668213, + "relativeCreated": 8385.074853897095, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:31,381" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441611.381743, + "msecs": 381.7429542541504, + "relativeCreated": 8385.258197784424, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:31,381" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441611.3819954, + "msecs": 381.99543952941895, + "relativeCreated": 8385.510683059692, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:31,381" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441611.3821914, + "msecs": 382.19141960144043, + "relativeCreated": 8385.706663131714, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:31,382" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441611.3823817, + "msecs": 382.3816776275635, + "relativeCreated": 8385.896921157837, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:31,382" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441611.382626, + "msecs": 382.6260566711426, + "relativeCreated": 8386.141300201416, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:31,382" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441611.3828406, + "msecs": 382.840633392334, + "relativeCreated": 8386.355876922607, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:31,382" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", @@ -10947,288 +9894,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954622.4967935, - "msecs": 496.7935085296631, - "relativeCreated": 8393.035888671875, - "thread": 139894051313216, + "created": 1676441611.4280112, + "msecs": 428.0111789703369, + "relativeCreated": 8431.52642250061, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:02,496" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.5006738, - "msecs": 500.673770904541, - "relativeCreated": 8396.916151046753, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:02,500" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954622.5011702, - "msecs": 501.17015838623047, - "relativeCreated": 8397.412538528442, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:02,501" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.5016937, - "msecs": 501.6937255859375, - "relativeCreated": 8397.93610572815, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:02,501" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.502296, - "msecs": 502.29597091674805, - "relativeCreated": 8398.53835105896, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:02,502" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.5027971, - "msecs": 502.79712677001953, - "relativeCreated": 8399.039506912231, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:02,502" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.5032713, - "msecs": 503.27134132385254, - "relativeCreated": 8399.513721466064, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:02,503" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.5037298, - "msecs": 503.72982025146484, - "relativeCreated": 8399.972200393677, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:02,503" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.504194, - "msecs": 504.1940212249756, - "relativeCreated": 8400.436401367188, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:02,504" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.5467203, - "msecs": 546.7202663421631, - "relativeCreated": 8442.962646484375, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:02,546" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.5474083, - "msecs": 547.4083423614502, - "relativeCreated": 8443.650722503662, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:02,547" + "asctime": "2023-02-15 07:13:31,428" } ], - "time_consumption": 0.25030016899108887 + "time_consumption": 0.2483987808227539 }, { "name": "__tLogger__", @@ -11247,15 +9924,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954622.7982867, - "msecs": 798.2866764068604, - "relativeCreated": 8694.529056549072, - "thread": 139894075555840, + "created": 1676441611.6771708, + "msecs": 677.1707534790039, + "relativeCreated": 8680.685997009277, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:02,798", + "asctime": "2023-02-15 07:13:31,677", "moduleLogger": [ { "name": "__unittest__", @@ -11275,15 +9952,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954622.7980728, - "msecs": 798.0728149414062, - "relativeCreated": 8694.315195083618, - "thread": 139894075555840, + "created": 1676441611.6768684, + "msecs": 676.8684387207031, + "relativeCreated": 8680.383682250977, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:02,798" + "asctime": "2023-02-15 07:13:31,676" }, { "name": "__unittest__", @@ -11304,18 +9981,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954622.7981927, - "msecs": 798.1927394866943, - "relativeCreated": 8694.435119628906, - "thread": 139894075555840, + "created": 1676441611.67702, + "msecs": 677.0200729370117, + "relativeCreated": 8680.535316467285, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:02,798" + "asctime": "2023-02-15 07:13:31,677" } ], - "time_consumption": 9.393692016601562e-05 + "time_consumption": 0.0001506805419921875 }, { "name": "__tLogger__", @@ -11331,22 +10008,22 @@ "stack_info": null, "lineno": 74, "funcName": "__test_brightness__", - "created": 1675954623.0996072, - "msecs": 99.60722923278809, - "relativeCreated": 8995.849609375, - "thread": 139894075555840, + "created": 1676441611.9786205, + "msecs": 978.6205291748047, + "relativeCreated": 8982.135772705078, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:03,099", + "asctime": "2023-02-15 07:13:31,978", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Sending message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -11358,22 +10035,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954622.798642, - "msecs": 798.6419200897217, - "relativeCreated": 8694.884300231934, - "thread": 139894075555840, + "created": 1676441611.6776793, + "msecs": 677.6793003082275, + "relativeCreated": 8681.194543838501, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:02,798" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:31,677" }, { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Received message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -11385,15 +10062,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954622.7996356, - "msecs": 799.635648727417, - "relativeCreated": 8695.878028869629, - "thread": 139894051313216, + "created": 1676441611.6789951, + "msecs": 678.9951324462891, + "relativeCreated": 8682.510375976562, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:02,799" + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:31,678" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", @@ -11412,50 +10089,23 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954622.8020575, - "msecs": 802.0575046539307, - "relativeCreated": 8698.299884796143, - "thread": 139894051313216, + "created": 1676441611.6815078, + "msecs": 681.5078258514404, + "relativeCreated": 8685.023069381714, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:02,802" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954622.8026452, - "msecs": 802.645206451416, - "relativeCreated": 8698.887586593628, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:02,802" + "asctime": "2023-02-15 07:13:31,681" } ], - "time_consumption": 0.29696202278137207 + "time_consumption": 0.29711270332336426 } ], - "time_consumption": 1.814870834350586, - "time_start": "2023-02-09 15:57:01,284", - "time_finished": "2023-02-09 15:57:03,099" + "time_consumption": 1.813593864440918, + "time_start": "2023-02-15 07:13:30,165", + "time_finished": "2023-02-15 07:13:31,978" }, "Color temperature test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1": { "name": "__tLogger__", @@ -11471,15 +10121,15 @@ "stack_info": null, "lineno": 81, "funcName": "test_color_temp", - "created": 1675954623.1002674, - "msecs": 100.26741027832031, - "relativeCreated": 8996.509790420532, - "thread": 139894075555840, + "created": 1676441611.9795027, + "msecs": 979.5026779174805, + "relativeCreated": 8983.017921447754, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Color temperature test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1", - "asctime": "2023-02-09 15:57:03,100", + "asctime": "2023-02-15 07:13:31,979", "moduleLogger": [], "testcaseLogger": [ { @@ -11496,22 +10146,22 @@ "stack_info": null, "lineno": 88, "funcName": "__test_color_temp__", - "created": 1675954623.402552, - "msecs": 402.55188941955566, - "relativeCreated": 9298.794269561768, - "thread": 139894075555840, + "created": 1676441612.2811818, + "msecs": 281.18181228637695, + "relativeCreated": 9284.69705581665, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:03,402", + "asctime": "2023-02-15 07:13:32,281", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Sending message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -11523,22 +10173,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954623.100664, - "msecs": 100.66390037536621, - "relativeCreated": 8996.906280517578, - "thread": 139894075555840, + "created": 1676441611.9800503, + "msecs": 980.0503253936768, + "relativeCreated": 8983.56556892395, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:03,100" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:31,980" }, { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Received message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -11550,15 +10200,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954623.1016765, - "msecs": 101.67646408081055, - "relativeCreated": 8997.918844223022, - "thread": 139894051313216, + "created": 1676441611.981266, + "msecs": 981.2660217285156, + "relativeCreated": 8984.781265258789, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:03,101" + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:31,981" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", @@ -11577,45 +10227,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954623.1039495, - "msecs": 103.94954681396484, - "relativeCreated": 9000.191926956177, - "thread": 139894051313216, + "created": 1676441611.9851162, + "msecs": 985.1162433624268, + "relativeCreated": 8988.6314868927, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:03,103" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.1045601, - "msecs": 104.56013679504395, - "relativeCreated": 9000.802516937256, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:03,104" + "asctime": "2023-02-15 07:13:31,985" } ], - "time_consumption": 0.2979917526245117 + "time_consumption": 0.2960655689239502 }, { "name": "__tLogger__", @@ -11634,15 +10257,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954623.4031177, - "msecs": 403.1176567077637, - "relativeCreated": 9299.360036849976, - "thread": 139894075555840, + "created": 1676441612.281898, + "msecs": 281.89802169799805, + "relativeCreated": 9285.413265228271, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:03,403", + "asctime": "2023-02-15 07:13:32,281", "moduleLogger": [ { "name": "__unittest__", @@ -11662,15 +10285,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954623.4029016, - "msecs": 402.90164947509766, - "relativeCreated": 9299.14402961731, - "thread": 139894075555840, + "created": 1676441612.281615, + "msecs": 281.6150188446045, + "relativeCreated": 9285.130262374878, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:03,402" + "asctime": "2023-02-15 07:13:32,281" }, { "name": "__unittest__", @@ -11691,18 +10314,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954623.4030225, - "msecs": 403.02252769470215, - "relativeCreated": 9299.264907836914, - "thread": 139894075555840, + "created": 1676441612.2817721, + "msecs": 281.7721366882324, + "relativeCreated": 9285.287380218506, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:03,403" + "asctime": "2023-02-15 07:13:32,281" } ], - "time_consumption": 9.512901306152344e-05 + "time_consumption": 0.000125885009765625 }, { "name": "__tLogger__", @@ -11720,22 +10343,22 @@ "stack_info": null, "lineno": 94, "funcName": "__test_color_temp__", - "created": 1675954623.7045069, - "msecs": 704.5068740844727, - "relativeCreated": 9600.749254226685, - "thread": 139894075555840, + "created": 1676441612.5832121, + "msecs": 583.21213722229, + "relativeCreated": 9586.727380752563, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:03,704", + "asctime": "2023-02-15 07:13:32,583", "moduleLogger": [ { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Sending message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -11747,22 +10370,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954623.4034345, - "msecs": 403.43451499938965, - "relativeCreated": 9299.676895141602, - "thread": 139894075555840, + "created": 1676441612.282338, + "msecs": 282.33790397644043, + "relativeCreated": 9285.853147506714, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:03,403" + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:13:32,282" }, { "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", "msg": "Received message with topic %s and payload %s", "args": [ "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -11774,22 +10397,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954623.4043727, - "msecs": 404.3726921081543, - "relativeCreated": 9300.615072250366, - "thread": 139894051313216, + "created": 1676441612.283576, + "msecs": 283.57601165771484, + "relativeCreated": 9287.091255187988, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:03,404" + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:13:32,283" }, { "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", "msg": "Received message with topic %s and payload %s", "args": [ "videv/ffe/livingroom/floorlamp/color_temp", - "b'8.0'" + "b'8'" ], "levelname": "DEBUG", "levelno": 10, @@ -11801,45 +10424,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954623.4066575, - "msecs": 406.65745735168457, - "relativeCreated": 9302.899837493896, - "thread": 139894051313216, + "created": 1676441612.2861445, + "msecs": 286.144495010376, + "relativeCreated": 9289.65973854065, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:03,406" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.4072578, - "msecs": 407.2577953338623, - "relativeCreated": 9303.500175476074, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:03,407" + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8'", + "asctime": "2023-02-15 07:13:32,286" } ], - "time_consumption": 0.29724907875061035 + "time_consumption": 0.29706764221191406 }, { "name": "__tLogger__", @@ -11858,15 +10454,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954623.705199, - "msecs": 705.1990032196045, - "relativeCreated": 9601.441383361816, - "thread": 139894075555840, + "created": 1676441612.5838866, + "msecs": 583.8866233825684, + "relativeCreated": 9587.401866912842, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:03,705", + "asctime": "2023-02-15 07:13:32,583", "moduleLogger": [ { "name": "__unittest__", @@ -11886,15 +10482,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954623.7049096, - "msecs": 704.9095630645752, - "relativeCreated": 9601.151943206787, - "thread": 139894075555840, + "created": 1676441612.5836048, + "msecs": 583.6048126220703, + "relativeCreated": 9587.120056152344, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:03,704" + "asctime": "2023-02-15 07:13:32,583" }, { "name": "__unittest__", @@ -11915,15 +10511,65755 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954623.7050767, - "msecs": 705.0766944885254, - "relativeCreated": 9601.319074630737, - "thread": 139894075555840, + "created": 1676441612.5837424, + "msecs": 583.7423801422119, + "relativeCreated": 9587.257623672485, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:03,705" + "asctime": "2023-02-15 07:13:32,583" + } + ], + "time_consumption": 0.0001442432403564453 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441612.5843081, + "msecs": 584.3081474304199, + "relativeCreated": 9587.823390960693, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:32,584", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441612.5841098, + "msecs": 584.1097831726074, + "relativeCreated": 9587.62502670288, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:13:32,584" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441612.584214, + "msecs": 584.2139720916748, + "relativeCreated": 9587.729215621948, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:13:32,584" + } + ], + "time_consumption": 9.417533874511719e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441612.885817, + "msecs": 885.8170509338379, + "relativeCreated": 9889.332294464111, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:13:32,885", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441612.5846615, + "msecs": 584.6614837646484, + "relativeCreated": 9588.176727294922, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 5", + "asctime": "2023-02-15 07:13:32,584" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.590814, + "msecs": 590.8141136169434, + "relativeCreated": 9594.329357147217, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:32,590" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441612.591025, + "msecs": 591.0251140594482, + "relativeCreated": 9594.540357589722, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:32,591" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.5912268, + "msecs": 591.2268161773682, + "relativeCreated": 9594.742059707642, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:32,591" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.5914686, + "msecs": 591.4685726165771, + "relativeCreated": 9594.98381614685, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:32,591" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.5916588, + "msecs": 591.6588306427002, + "relativeCreated": 9595.174074172974, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:32,591" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.591844, + "msecs": 591.8440818786621, + "relativeCreated": 9595.359325408936, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:32,591" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.592024, + "msecs": 592.0240879058838, + "relativeCreated": 9595.539331436157, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:32,592" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.5922196, + "msecs": 592.2195911407471, + "relativeCreated": 9595.73483467102, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:32,592" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.640047, + "msecs": 640.0470733642578, + "relativeCreated": 9643.562316894531, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:32,640" + } + ], + "time_consumption": 0.24576997756958008 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441612.8866363, + "msecs": 886.6362571716309, + "relativeCreated": 9890.151500701904, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:32,886", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441612.886272, + "msecs": 886.2719535827637, + "relativeCreated": 9889.787197113037, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:13:32,886" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441612.886505, + "msecs": 886.5048885345459, + "relativeCreated": 9890.02013206482, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:13:32,886" + } + ], + "time_consumption": 0.00013136863708496094 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441612.887065, + "msecs": 887.0649337768555, + "relativeCreated": 9890.580177307129, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:32,887", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441612.8868368, + "msecs": 886.8367671966553, + "relativeCreated": 9890.352010726929, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:13:32,886" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441612.8869627, + "msecs": 886.9626522064209, + "relativeCreated": 9890.477895736694, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:32,886" + } + ], + "time_consumption": 0.00010228157043457031 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441613.18841, + "msecs": 188.41004371643066, + "relativeCreated": 10191.925287246704, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:13:33,188", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441612.8874507, + "msecs": 887.4506950378418, + "relativeCreated": 9890.965938568115, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:13:32,887" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.8886425, + "msecs": 888.6425495147705, + "relativeCreated": 9892.157793045044, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:13:32,888" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441612.8911965, + "msecs": 891.1964893341064, + "relativeCreated": 9894.71173286438, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8'", + "asctime": "2023-02-15 07:13:32,891" + } + ], + "time_consumption": 0.2972135543823242 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441613.1890192, + "msecs": 189.01920318603516, + "relativeCreated": 10192.534446716309, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:33,189", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441613.1887867, + "msecs": 188.78674507141113, + "relativeCreated": 10192.301988601685, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:13:33,188" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441613.188916, + "msecs": 188.91596794128418, + "relativeCreated": 10192.431211471558, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:13:33,188" + } + ], + "time_consumption": 0.00010323524475097656 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441613.1894135, + "msecs": 189.41354751586914, + "relativeCreated": 10192.928791046143, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:33,189", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441613.1892135, + "msecs": 189.21351432800293, + "relativeCreated": 10192.728757858276, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:13:33,189" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441613.1893196, + "msecs": 189.31961059570312, + "relativeCreated": 10192.834854125977, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:13:33,189" + } + ], + "time_consumption": 9.393692016601562e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441613.4907446, + "msecs": 490.74459075927734, + "relativeCreated": 10494.25983428955, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:13:33,490", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441613.1896565, + "msecs": 189.65649604797363, + "relativeCreated": 10193.171739578247, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 5", + "asctime": "2023-02-15 07:13:33,189" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.1948752, + "msecs": 194.87524032592773, + "relativeCreated": 10198.390483856201, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:33,194" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441613.1954794, + "msecs": 195.4793930053711, + "relativeCreated": 10198.994636535645, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:33,195" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.195766, + "msecs": 195.76597213745117, + "relativeCreated": 10199.281215667725, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:33,195" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.1959746, + "msecs": 195.97458839416504, + "relativeCreated": 10199.489831924438, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:33,195" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.196147, + "msecs": 196.14696502685547, + "relativeCreated": 10199.662208557129, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:33,196" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.1963093, + "msecs": 196.30932807922363, + "relativeCreated": 10199.824571609497, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:33,196" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.1964686, + "msecs": 196.46859169006348, + "relativeCreated": 10199.983835220337, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:33,196" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.1966522, + "msecs": 196.65217399597168, + "relativeCreated": 10200.167417526245, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:33,196" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.2436347, + "msecs": 243.63470077514648, + "relativeCreated": 10247.14994430542, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:33,243" + } + ], + "time_consumption": 0.24710988998413086 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441613.4914865, + "msecs": 491.4865493774414, + "relativeCreated": 10495.001792907715, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:33,491", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441613.4912074, + "msecs": 491.2073612213135, + "relativeCreated": 10494.722604751587, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:13:33,491" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441613.4913619, + "msecs": 491.3618564605713, + "relativeCreated": 10494.877099990845, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:13:33,491" + } + ], + "time_consumption": 0.0001246929168701172 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 105, + "funcName": "__test_color_temp__", + "created": 1676441613.792921, + "msecs": 792.9210662841797, + "relativeCreated": 10796.436309814453, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:13:33,792", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441613.4919062, + "msecs": 491.90616607666016, + "relativeCreated": 10495.421409606934, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:33,491" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.4931684, + "msecs": 493.1683540344238, + "relativeCreated": 10496.683597564697, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:33,493" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.4957244, + "msecs": 495.7244396209717, + "relativeCreated": 10499.239683151245, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:33,495" + } + ], + "time_consumption": 0.297196626663208 + } + ], + "time_consumption": 1.8134183883666992, + "time_start": "2023-02-15 07:13:31,979", + "time_finished": "2023-02-15 07:13:33,792" + }, + "Power On/ Off test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441613.7936802, + "msecs": 793.6801910400391, + "relativeCreated": 10797.195434570312, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1", + "asctime": "2023-02-15 07:13:33,793", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441613.7942169, + "msecs": 794.2168712615967, + "relativeCreated": 10797.73211479187, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:33,794", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441613.7939575, + "msecs": 793.9574718475342, + "relativeCreated": 10797.472715377808, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:33,793" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441613.7940998, + "msecs": 794.0998077392578, + "relativeCreated": 10797.615051269531, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:33,794" + } + ], + "time_consumption": 0.00011706352233886719 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441614.0960245, + "msecs": 96.0245132446289, + "relativeCreated": 11099.539756774902, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:34,096", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441613.794663, + "msecs": 794.6629524230957, + "relativeCreated": 10798.17819595337, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:33,794" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.7958121, + "msecs": 795.8121299743652, + "relativeCreated": 10799.327373504639, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:33,795" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441613.79824, + "msecs": 798.2399463653564, + "relativeCreated": 10801.75518989563, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2023-02-15 07:13:33,798" + } + ], + "time_consumption": 0.29778456687927246 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441614.0967634, + "msecs": 96.76337242126465, + "relativeCreated": 11100.278615951538, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:34,096", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441614.0964842, + "msecs": 96.48418426513672, + "relativeCreated": 11099.99942779541, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:34,096" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441614.0966368, + "msecs": 96.63677215576172, + "relativeCreated": 11100.152015686035, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:34,096" + } + ], + "time_consumption": 0.0001266002655029297 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441614.0971687, + "msecs": 97.1686840057373, + "relativeCreated": 11100.68392753601, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:34,097", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441614.0969565, + "msecs": 96.95649147033691, + "relativeCreated": 11100.47173500061, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:34,096" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441614.097068, + "msecs": 97.06807136535645, + "relativeCreated": 11100.58331489563, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:34,097" + } + ], + "time_consumption": 0.00010061264038085938 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441614.3991835, + "msecs": 399.1835117340088, + "relativeCreated": 11402.698755264282, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:34,399", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441614.0974934, + "msecs": 97.49341011047363, + "relativeCreated": 11101.008653640747, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false", + "asctime": "2023-02-15 07:13:34,097" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.103483, + "msecs": 103.48296165466309, + "relativeCreated": 11106.998205184937, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,103" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441614.1043646, + "msecs": 104.36463356018066, + "relativeCreated": 11107.879877090454, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:34,104" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.104632, + "msecs": 104.63190078735352, + "relativeCreated": 11108.147144317627, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,104" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.104992, + "msecs": 104.99191284179688, + "relativeCreated": 11108.50715637207, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,104" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.1051946, + "msecs": 105.1945686340332, + "relativeCreated": 11108.709812164307, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,105" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.1053896, + "msecs": 105.38959503173828, + "relativeCreated": 11108.904838562012, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,105" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.1055577, + "msecs": 105.55768013000488, + "relativeCreated": 11109.072923660278, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,105" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.1057255, + "msecs": 105.72552680969238, + "relativeCreated": 11109.240770339966, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:34,105" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.148629, + "msecs": 148.62895011901855, + "relativeCreated": 11152.144193649292, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:34,148" + } + ], + "time_consumption": 0.25055456161499023 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441614.3998566, + "msecs": 399.8565673828125, + "relativeCreated": 11403.371810913086, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:34,399", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441614.399618, + "msecs": 399.61791038513184, + "relativeCreated": 11403.133153915405, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:34,399" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441614.3997514, + "msecs": 399.7514247894287, + "relativeCreated": 11403.266668319702, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:34,399" + } + ], + "time_consumption": 0.00010514259338378906 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441614.4002242, + "msecs": 400.2242088317871, + "relativeCreated": 11403.73945236206, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:34,400", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441614.4000216, + "msecs": 400.0215530395508, + "relativeCreated": 11403.536796569824, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:34,400" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441614.400129, + "msecs": 400.1290798187256, + "relativeCreated": 11403.644323348999, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:34,400" + } + ], + "time_consumption": 9.512901306152344e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441614.7017014, + "msecs": 701.7014026641846, + "relativeCreated": 11705.216646194458, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:34,701", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441614.4005747, + "msecs": 400.5746841430664, + "relativeCreated": 11404.08992767334, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:34,400" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.4017231, + "msecs": 401.72314643859863, + "relativeCreated": 11405.238389968872, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:34,401" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.40429, + "msecs": 404.28996086120605, + "relativeCreated": 11407.80520439148, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2023-02-15 07:13:34,404" + } + ], + "time_consumption": 0.2974114418029785 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441614.7024736, + "msecs": 702.4736404418945, + "relativeCreated": 11705.988883972168, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:34,702", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441614.7021585, + "msecs": 702.1584510803223, + "relativeCreated": 11705.673694610596, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:34,702" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441614.7023103, + "msecs": 702.31032371521, + "relativeCreated": 11705.825567245483, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:34,702" + } + ], + "time_consumption": 0.0001633167266845703 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441614.7029338, + "msecs": 702.9337882995605, + "relativeCreated": 11706.449031829834, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:34,702", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441614.7026827, + "msecs": 702.6827335357666, + "relativeCreated": 11706.19797706604, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:34,702" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441614.7027943, + "msecs": 702.7943134307861, + "relativeCreated": 11706.30955696106, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:34,702" + } + ], + "time_consumption": 0.00013947486877441406 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441615.0040977, + "msecs": 4.097700119018555, + "relativeCreated": 12007.612943649292, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:35,004", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441614.7032366, + "msecs": 703.2365798950195, + "relativeCreated": 11706.751823425293, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false", + "asctime": "2023-02-15 07:13:34,703" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.7088633, + "msecs": 708.8632583618164, + "relativeCreated": 11712.37850189209, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,708" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441614.709181, + "msecs": 709.1810703277588, + "relativeCreated": 11712.696313858032, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:34,709" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.7094526, + "msecs": 709.4526290893555, + "relativeCreated": 11712.967872619629, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,709" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.7096977, + "msecs": 709.6977233886719, + "relativeCreated": 11713.212966918945, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,709" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.7098927, + "msecs": 709.892749786377, + "relativeCreated": 11713.40799331665, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,709" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.7100775, + "msecs": 710.0775241851807, + "relativeCreated": 11713.592767715454, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,710" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.7102635, + "msecs": 710.2634906768799, + "relativeCreated": 11713.778734207153, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:34,710" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.710456, + "msecs": 710.4558944702148, + "relativeCreated": 11713.971138000488, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:34,710" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441614.7532659, + "msecs": 753.2658576965332, + "relativeCreated": 11756.781101226807, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:34,753" + } + ], + "time_consumption": 0.25083184242248535 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441615.0047817, + "msecs": 4.7817230224609375, + "relativeCreated": 12008.296966552734, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:35,004", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441615.004498, + "msecs": 4.498004913330078, + "relativeCreated": 12008.013248443604, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:35,004" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441615.004667, + "msecs": 4.667043685913086, + "relativeCreated": 12008.182287216187, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:35,004" + } + ], + "time_consumption": 0.00011467933654785156 + } + ], + "time_consumption": 1.2111015319824219, + "time_start": "2023-02-15 07:13:33,793", + "time_finished": "2023-02-15 07:13:35,004" + }, + "Brightness test for device and virtual device: zigbee/ffe/livingroom/main_light": { + "name": "__tLogger__", + "msg": "Brightness test for device and virtual device: zigbee/ffe/livingroom/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_brightness", + "created": 1676441615.005319, + "msecs": 5.319118499755859, + "relativeCreated": 12008.83436203003, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness test for device and virtual device: zigbee/ffe/livingroom/main_light", + "asctime": "2023-02-15 07:13:35,005", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 57, + "funcName": "__test_brightness__", + "created": 1676441615.3073928, + "msecs": 307.39283561706543, + "relativeCreated": 12310.908079147339, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:13:35,307", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.0056503, + "msecs": 5.65028190612793, + "relativeCreated": 12009.165525436401, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:35,005" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.006314, + "msecs": 6.31403923034668, + "relativeCreated": 12009.82928276062, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,006" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.007576, + "msecs": 7.57598876953125, + "relativeCreated": 12011.091232299805, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:35,007" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0084577, + "msecs": 8.457660675048828, + "relativeCreated": 12011.972904205322, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,008" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0510545, + "msecs": 51.05447769165039, + "relativeCreated": 12054.569721221924, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:35,051" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.0517216, + "msecs": 51.72157287597656, + "relativeCreated": 12055.23681640625, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,051" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0523467, + "msecs": 52.34670639038086, + "relativeCreated": 12055.861949920654, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:35,052" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.0529072, + "msecs": 52.90722846984863, + "relativeCreated": 12056.422472000122, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,052" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0535963, + "msecs": 53.59625816345215, + "relativeCreated": 12057.111501693726, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:35,053" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.0541356, + "msecs": 54.13556098937988, + "relativeCreated": 12057.650804519653, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,054" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.054703, + "msecs": 54.7029972076416, + "relativeCreated": 12058.218240737915, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:35,054" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.0552058, + "msecs": 55.2058219909668, + "relativeCreated": 12058.72106552124, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,055" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.05584, + "msecs": 55.84001541137695, + "relativeCreated": 12059.35525894165, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:35,055" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.0563433, + "msecs": 56.34331703186035, + "relativeCreated": 12059.858560562134, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,056" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.056871, + "msecs": 56.87093734741211, + "relativeCreated": 12060.386180877686, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:35,056" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.0574236, + "msecs": 57.42359161376953, + "relativeCreated": 12060.938835144043, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,057" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0581148, + "msecs": 58.11476707458496, + "relativeCreated": 12061.630010604858, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:35,058" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.058829, + "msecs": 58.82906913757324, + "relativeCreated": 12062.344312667847, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:35,058" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0594437, + "msecs": 59.44371223449707, + "relativeCreated": 12062.95895576477, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,059" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.060066, + "msecs": 60.06598472595215, + "relativeCreated": 12063.581228256226, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,060" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0606887, + "msecs": 60.68873405456543, + "relativeCreated": 12064.203977584839, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:35,060" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0613256, + "msecs": 61.3255500793457, + "relativeCreated": 12064.84079360962, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,061" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0619085, + "msecs": 61.90848350524902, + "relativeCreated": 12065.423727035522, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,061" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.062514, + "msecs": 62.51406669616699, + "relativeCreated": 12066.02931022644, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2023-02-15 07:13:35,062" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.06314, + "msecs": 63.139915466308594, + "relativeCreated": 12066.655158996582, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,063" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.0991316, + "msecs": 99.13158416748047, + "relativeCreated": 12102.646827697754, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,099" + } + ], + "time_consumption": 0.20826125144958496 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441615.3080463, + "msecs": 308.0463409423828, + "relativeCreated": 12311.561584472656, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:35,308", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441615.3078005, + "msecs": 307.8005313873291, + "relativeCreated": 12311.315774917603, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:13:35,307" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441615.3079379, + "msecs": 307.9378604888916, + "relativeCreated": 12311.453104019165, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:35,307" + } + ], + "time_consumption": 0.00010848045349121094 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441615.6092315, + "msecs": 609.2314720153809, + "relativeCreated": 12612.746715545654, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:13:35,609", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.3083985, + "msecs": 308.3984851837158, + "relativeCreated": 12311.91372871399, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,308" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.3095262, + "msecs": 309.5262050628662, + "relativeCreated": 12313.04144859314, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,309" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.3116426, + "msecs": 311.6426467895508, + "relativeCreated": 12315.157890319824, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:13:35,311" + } + ], + "time_consumption": 0.2975888252258301 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441615.609923, + "msecs": 609.9228858947754, + "relativeCreated": 12613.438129425049, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:35,609", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441615.609652, + "msecs": 609.652042388916, + "relativeCreated": 12613.16728591919, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:13:35,609" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441615.6097996, + "msecs": 609.7996234893799, + "relativeCreated": 12613.314867019653, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:35,609" + } + ], + "time_consumption": 0.0001232624053955078 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441615.6103227, + "msecs": 610.3227138519287, + "relativeCreated": 12613.837957382202, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:35,610", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441615.6101148, + "msecs": 610.1148128509521, + "relativeCreated": 12613.630056381226, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:13:35,610" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441615.6102238, + "msecs": 610.2237701416016, + "relativeCreated": 12613.739013671875, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:35,610" + } + ], + "time_consumption": 9.894371032714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441615.911524, + "msecs": 911.5240573883057, + "relativeCreated": 12915.03930091858, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:13:35,911", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.6106741, + "msecs": 610.6741428375244, + "relativeCreated": 12614.189386367798, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:13:35,610" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.614046, + "msecs": 614.0460968017578, + "relativeCreated": 12617.561340332031, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:35,614" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.6147969, + "msecs": 614.7968769073486, + "relativeCreated": 12618.312120437622, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,614" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.6160443, + "msecs": 616.044282913208, + "relativeCreated": 12619.559526443481, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,616" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.65885, + "msecs": 658.8499546051025, + "relativeCreated": 12662.365198135376, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:35,658" + } + ], + "time_consumption": 0.2526741027832031 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441615.911765, + "msecs": 911.7650985717773, + "relativeCreated": 12915.28034210205, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:35,911", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441615.9116938, + "msecs": 911.693811416626, + "relativeCreated": 12915.2090549469, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:13:35,911" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441615.9117343, + "msecs": 911.7343425750732, + "relativeCreated": 12915.249586105347, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:35,911" + } + ], + "time_consumption": 3.075599670410156e-05 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441615.9118676, + "msecs": 911.867618560791, + "relativeCreated": 12915.382862091064, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:35,911", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441615.911815, + "msecs": 911.8149280548096, + "relativeCreated": 12915.330171585083, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:13:35,911" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441615.9118428, + "msecs": 911.8428230285645, + "relativeCreated": 12915.358066558838, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:35,911" + } + ], + "time_consumption": 2.47955322265625e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441616.2127178, + "msecs": 212.71777153015137, + "relativeCreated": 13216.233015060425, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:13:36,212", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441615.9119828, + "msecs": 911.9827747344971, + "relativeCreated": 12915.49801826477, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:35,911" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.9124808, + "msecs": 912.4808311462402, + "relativeCreated": 12915.996074676514, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:35,912" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441615.9132762, + "msecs": 913.276195526123, + "relativeCreated": 12916.791439056396, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:13:35,913" + } + ], + "time_consumption": 0.2994415760040283 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441616.2133873, + "msecs": 213.38725090026855, + "relativeCreated": 13216.902494430542, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:36,213", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441616.2131093, + "msecs": 213.10925483703613, + "relativeCreated": 13216.62449836731, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:13:36,213" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441616.2132826, + "msecs": 213.28258514404297, + "relativeCreated": 13216.797828674316, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:36,213" + } + ], + "time_consumption": 0.00010466575622558594 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441616.2137396, + "msecs": 213.73963356018066, + "relativeCreated": 13217.254877090454, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:36,213", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441616.2135572, + "msecs": 213.55724334716797, + "relativeCreated": 13217.072486877441, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:13:36,213" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441616.2136538, + "msecs": 213.6538028717041, + "relativeCreated": 13217.169046401978, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:36,213" + } + ], + "time_consumption": 8.58306884765625e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441616.5150924, + "msecs": 515.0923728942871, + "relativeCreated": 13518.60761642456, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:13:36,515", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.2139866, + "msecs": 213.98663520812988, + "relativeCreated": 13217.501878738403, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:13:36,213" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.2168207, + "msecs": 216.82071685791016, + "relativeCreated": 13220.335960388184, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:36,216" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.2174542, + "msecs": 217.454195022583, + "relativeCreated": 13220.969438552856, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,217" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.218444, + "msecs": 218.4441089630127, + "relativeCreated": 13221.959352493286, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,218" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.261601, + "msecs": 261.6009712219238, + "relativeCreated": 13265.116214752197, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:36,261" + } + ], + "time_consumption": 0.2534914016723633 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441616.5158892, + "msecs": 515.8891677856445, + "relativeCreated": 13519.404411315918, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:36,515", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441616.5155506, + "msecs": 515.5506134033203, + "relativeCreated": 13519.065856933594, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:13:36,515" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441616.5157502, + "msecs": 515.7501697540283, + "relativeCreated": 13519.265413284302, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:36,515" + } + ], + "time_consumption": 0.00013899803161621094 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "__test_brightness__", + "created": 1676441616.8172808, + "msecs": 817.2807693481445, + "relativeCreated": 13820.796012878418, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:13:36,817", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.5162024, + "msecs": 516.202449798584, + "relativeCreated": 13519.717693328857, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:36,516" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5175524, + "msecs": 517.552375793457, + "relativeCreated": 13521.06761932373, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:36,517" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5225675, + "msecs": 522.5675106048584, + "relativeCreated": 13526.082754135132, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:36,522" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.52276, + "msecs": 522.7599143981934, + "relativeCreated": 13526.275157928467, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,522" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5229442, + "msecs": 522.9442119598389, + "relativeCreated": 13526.459455490112, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:36,522" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.523109, + "msecs": 523.108959197998, + "relativeCreated": 13526.624202728271, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,523" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.523316, + "msecs": 523.3159065246582, + "relativeCreated": 13526.831150054932, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:36,523" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.523479, + "msecs": 523.4789848327637, + "relativeCreated": 13526.994228363037, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,523" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5236406, + "msecs": 523.6406326293945, + "relativeCreated": 13527.155876159668, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:36,523" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.5238051, + "msecs": 523.8051414489746, + "relativeCreated": 13527.320384979248, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,523" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5240061, + "msecs": 524.0061283111572, + "relativeCreated": 13527.52137184143, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:36,524" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.5241659, + "msecs": 524.1658687591553, + "relativeCreated": 13527.681112289429, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,524" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.524323, + "msecs": 524.3229866027832, + "relativeCreated": 13527.838230133057, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:36,524" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.5244818, + "msecs": 524.4817733764648, + "relativeCreated": 13527.997016906738, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,524" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5246751, + "msecs": 524.6751308441162, + "relativeCreated": 13528.19037437439, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:36,524" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5248768, + "msecs": 524.8768329620361, + "relativeCreated": 13528.39207649231, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,524" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5250633, + "msecs": 525.0632762908936, + "relativeCreated": 13528.578519821167, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,525" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.525279, + "msecs": 525.2790451049805, + "relativeCreated": 13528.794288635254, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,525" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5254848, + "msecs": 525.4848003387451, + "relativeCreated": 13529.000043869019, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,525" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5256853, + "msecs": 525.6853103637695, + "relativeCreated": 13529.200553894043, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,525" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5258877, + "msecs": 525.8877277374268, + "relativeCreated": 13529.4029712677, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,525" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.5718508, + "msecs": 571.8507766723633, + "relativeCreated": 13575.366020202637, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:36,571" + } + ], + "time_consumption": 0.24542999267578125 + } + ], + "time_consumption": 1.8119616508483887, + "time_start": "2023-02-15 07:13:35,005", + "time_finished": "2023-02-15 07:13:36,817" + }, + "Color temperature test for device and virtual device: zigbee/ffe/livingroom/main_light": { + "name": "__tLogger__", + "msg": "Color temperature test for device and virtual device: zigbee/ffe/livingroom/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 81, + "funcName": "test_color_temp", + "created": 1676441616.8181024, + "msecs": 818.1023597717285, + "relativeCreated": 13821.617603302002, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Color temperature test for device and virtual device: zigbee/ffe/livingroom/main_light", + "asctime": "2023-02-15 07:13:36,818", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 88, + "funcName": "__test_color_temp__", + "created": 1676441617.1200628, + "msecs": 120.06282806396484, + "relativeCreated": 14123.578071594238, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:13:37,120", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.818537, + "msecs": 818.5369968414307, + "relativeCreated": 13822.052240371704, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:36,818" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.8192225, + "msecs": 819.2224502563477, + "relativeCreated": 13822.737693786621, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,819" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.820387, + "msecs": 820.3868865966797, + "relativeCreated": 13823.902130126953, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:36,820" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8212526, + "msecs": 821.2525844573975, + "relativeCreated": 13824.76782798767, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,821" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.863143, + "msecs": 863.1429672241211, + "relativeCreated": 13866.658210754395, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:36,863" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.863811, + "msecs": 863.8110160827637, + "relativeCreated": 13867.326259613037, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,863" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.864445, + "msecs": 864.4449710845947, + "relativeCreated": 13867.960214614868, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:36,864" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.8650396, + "msecs": 865.039587020874, + "relativeCreated": 13868.554830551147, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,865" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.865725, + "msecs": 865.725040435791, + "relativeCreated": 13869.240283966064, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:36,865" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.8662426, + "msecs": 866.2426471710205, + "relativeCreated": 13869.757890701294, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,866" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8667998, + "msecs": 866.7998313903809, + "relativeCreated": 13870.315074920654, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:36,866" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.8673267, + "msecs": 867.3267364501953, + "relativeCreated": 13870.841979980469, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,867" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8678734, + "msecs": 867.8734302520752, + "relativeCreated": 13871.388673782349, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:36,867" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.8680065, + "msecs": 868.0064678192139, + "relativeCreated": 13871.521711349487, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,868" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8681374, + "msecs": 868.1373596191406, + "relativeCreated": 13871.652603149414, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:36,868" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441616.8682754, + "msecs": 868.2754039764404, + "relativeCreated": 13871.790647506714, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:36,868" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8684366, + "msecs": 868.4365749359131, + "relativeCreated": 13871.951818466187, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:36,868" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8686054, + "msecs": 868.605375289917, + "relativeCreated": 13872.12061882019, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,868" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8687656, + "msecs": 868.7655925750732, + "relativeCreated": 13872.280836105347, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,868" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8697793, + "msecs": 869.7793483734131, + "relativeCreated": 13873.294591903687, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,869" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.86995, + "msecs": 869.9500560760498, + "relativeCreated": 13873.465299606323, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,869" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8701048, + "msecs": 870.1047897338867, + "relativeCreated": 13873.62003326416, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,870" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.8702555, + "msecs": 870.2554702758789, + "relativeCreated": 13873.770713806152, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:36,870" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441616.9109867, + "msecs": 910.9866619110107, + "relativeCreated": 13914.501905441284, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2023-02-15 07:13:36,910" + } + ], + "time_consumption": 0.2090761661529541 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441617.1207998, + "msecs": 120.79977989196777, + "relativeCreated": 14124.315023422241, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:37,120", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441617.1205227, + "msecs": 120.52273750305176, + "relativeCreated": 14124.037981033325, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:13:37,120" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441617.1206763, + "msecs": 120.67627906799316, + "relativeCreated": 14124.191522598267, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:37,120" + } + ], + "time_consumption": 0.00012350082397460938 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441617.4222152, + "msecs": 422.21522331237793, + "relativeCreated": 14425.730466842651, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:13:37,422", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441617.1212125, + "msecs": 121.21248245239258, + "relativeCreated": 14124.727725982666, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:13:37,121" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441617.1225998, + "msecs": 122.59984016418457, + "relativeCreated": 14126.115083694458, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:13:37,122" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441617.1249628, + "msecs": 124.96280670166016, + "relativeCreated": 14128.478050231934, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:13:37,124" + } + ], + "time_consumption": 0.2972524166107178 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441617.4229836, + "msecs": 422.98364639282227, + "relativeCreated": 14426.498889923096, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:37,422", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441617.4227023, + "msecs": 422.7023124694824, + "relativeCreated": 14426.217555999756, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:13:37,422" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441617.4228585, + "msecs": 422.85847663879395, + "relativeCreated": 14426.373720169067, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:13:37,422" + } + ], + "time_consumption": 0.0001251697540283203 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441617.4234304, + "msecs": 423.4304428100586, + "relativeCreated": 14426.945686340332, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:37,423", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441617.4231791, + "msecs": 423.17914962768555, + "relativeCreated": 14426.694393157959, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:13:37,423" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441617.4233308, + "msecs": 423.33078384399414, + "relativeCreated": 14426.846027374268, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:13:37,423" + } + ], + "time_consumption": 9.965896606445312e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441617.7248943, + "msecs": 724.8942852020264, + "relativeCreated": 14728.4095287323, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:13:37,724", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441617.4237583, + "msecs": 423.75826835632324, + "relativeCreated": 14427.273511886597, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:13:37,423" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441617.4270713, + "msecs": 427.07133293151855, + "relativeCreated": 14430.586576461792, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:37,427" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441617.427773, + "msecs": 427.77299880981445, + "relativeCreated": 14431.288242340088, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:37,427" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441617.428879, + "msecs": 428.8790225982666, + "relativeCreated": 14432.39426612854, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:37,428" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441617.473653, + "msecs": 473.65307807922363, + "relativeCreated": 14477.168321609497, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:37,473" + } + ], + "time_consumption": 0.25124120712280273 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441617.7256258, + "msecs": 725.62575340271, + "relativeCreated": 14729.140996932983, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:37,725", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441617.7253487, + "msecs": 725.348711013794, + "relativeCreated": 14728.863954544067, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:13:37,725" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441617.7255037, + "msecs": 725.50368309021, + "relativeCreated": 14729.018926620483, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:13:37,725" + } + ], + "time_consumption": 0.0001220703125 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441617.7260847, + "msecs": 726.0847091674805, + "relativeCreated": 14729.599952697754, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:37,726", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441617.7258217, + "msecs": 725.8217334747314, + "relativeCreated": 14729.336977005005, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:13:37,725" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441617.7259834, + "msecs": 725.9833812713623, + "relativeCreated": 14729.498624801636, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:37,725" + } + ], + "time_consumption": 0.00010132789611816406 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441618.0275111, + "msecs": 27.511119842529297, + "relativeCreated": 15031.026363372803, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:13:38,027", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441617.726513, + "msecs": 726.5129089355469, + "relativeCreated": 14730.02815246582, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:13:37,726" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441617.7277997, + "msecs": 727.799654006958, + "relativeCreated": 14731.314897537231, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:13:37,727" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441617.7308066, + "msecs": 730.8065891265869, + "relativeCreated": 14734.32183265686, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:13:37,730" + } + ], + "time_consumption": 0.2967045307159424 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441618.0282373, + "msecs": 28.237342834472656, + "relativeCreated": 15031.752586364746, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:38,028", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441618.0279605, + "msecs": 27.960538864135742, + "relativeCreated": 15031.47578239441, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:13:38,027" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441618.0281138, + "msecs": 28.113842010498047, + "relativeCreated": 15031.629085540771, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:13:38,028" + } + ], + "time_consumption": 0.00012350082397460938 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441618.0286438, + "msecs": 28.64384651184082, + "relativeCreated": 15032.159090042114, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:38,028", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441618.0284317, + "msecs": 28.43165397644043, + "relativeCreated": 15031.946897506714, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:13:38,028" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441618.0285425, + "msecs": 28.542518615722656, + "relativeCreated": 15032.057762145996, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:13:38,028" + } + ], + "time_consumption": 0.00010132789611816406 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441618.3300738, + "msecs": 330.0738334655762, + "relativeCreated": 15333.58907699585, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:13:38,330", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.0289736, + "msecs": 28.97357940673828, + "relativeCreated": 15032.488822937012, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:13:38,028" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.0322826, + "msecs": 32.28259086608887, + "relativeCreated": 15035.797834396362, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:38,032" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.0329854, + "msecs": 32.98544883728027, + "relativeCreated": 15036.500692367554, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,032" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.0341284, + "msecs": 34.128427505493164, + "relativeCreated": 15037.643671035767, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,034" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.0773125, + "msecs": 77.31246948242188, + "relativeCreated": 15080.827713012695, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:38,077" + } + ], + "time_consumption": 0.2527613639831543 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441618.330746, + "msecs": 330.7459354400635, + "relativeCreated": 15334.261178970337, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:38,330", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441618.330511, + "msecs": 330.51109313964844, + "relativeCreated": 15334.026336669922, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:13:38,330" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441618.3306425, + "msecs": 330.6424617767334, + "relativeCreated": 15334.157705307007, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:13:38,330" + } + ], + "time_consumption": 0.00010347366333007812 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 105, + "funcName": "__test_color_temp__", + "created": 1676441618.6320093, + "msecs": 632.0092678070068, + "relativeCreated": 15635.52451133728, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:13:38,632", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.330998, + "msecs": 330.9979438781738, + "relativeCreated": 15334.513187408447, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:38,330" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.332159, + "msecs": 332.15904235839844, + "relativeCreated": 15335.674285888672, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:38,332" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.3371952, + "msecs": 337.19515800476074, + "relativeCreated": 15340.710401535034, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,337" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.337809, + "msecs": 337.80908584594727, + "relativeCreated": 15341.32432937622, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,337" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.3384018, + "msecs": 338.40179443359375, + "relativeCreated": 15341.917037963867, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,338" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.3389428, + "msecs": 338.9427661895752, + "relativeCreated": 15342.458009719849, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,338" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.339607, + "msecs": 339.60700035095215, + "relativeCreated": 15343.122243881226, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,339" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.3401155, + "msecs": 340.1155471801758, + "relativeCreated": 15343.63079071045, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,340" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.3406324, + "msecs": 340.63243865966797, + "relativeCreated": 15344.147682189941, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,340" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.341133, + "msecs": 341.13311767578125, + "relativeCreated": 15344.648361206055, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,341" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.341762, + "msecs": 341.7620658874512, + "relativeCreated": 15345.277309417725, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,341" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.3422718, + "msecs": 342.2718048095703, + "relativeCreated": 15345.787048339844, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,342" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.3424394, + "msecs": 342.4394130706787, + "relativeCreated": 15345.954656600952, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,342" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.3425653, + "msecs": 342.56529808044434, + "relativeCreated": 15346.080541610718, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,342" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.342717, + "msecs": 342.71693229675293, + "relativeCreated": 15346.232175827026, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:38,342" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.3428793, + "msecs": 342.8792953491211, + "relativeCreated": 15346.394538879395, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,342" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.343041, + "msecs": 343.04094314575195, + "relativeCreated": 15346.556186676025, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,343" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.3431826, + "msecs": 343.1825637817383, + "relativeCreated": 15346.697807312012, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,343" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.3433206, + "msecs": 343.3206081390381, + "relativeCreated": 15346.835851669312, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,343" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.3434565, + "msecs": 343.456506729126, + "relativeCreated": 15346.9717502594, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,343" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.3435926, + "msecs": 343.59264373779297, + "relativeCreated": 15347.107887268066, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,343" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.386873, + "msecs": 386.8730068206787, + "relativeCreated": 15390.388250350952, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:38,386" + } + ], + "time_consumption": 0.24513626098632812 + } + ], + "time_consumption": 1.8139069080352783, + "time_start": "2023-02-15 07:13:36,818", + "time_finished": "2023-02-15 07:13:38,632" + }, + "Power On/ Off test for device and virtual device: shellies/ffe/livingroom/main_light": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: shellies/ffe/livingroom/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441618.6327913, + "msecs": 632.79128074646, + "relativeCreated": 15636.306524276733, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: shellies/ffe/livingroom/main_light", + "asctime": "2023-02-15 07:13:38,632", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441618.6333787, + "msecs": 633.3787441253662, + "relativeCreated": 15636.89398765564, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:38,633", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441618.6330726, + "msecs": 633.0726146697998, + "relativeCreated": 15636.587858200073, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:38,633" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441618.6332178, + "msecs": 633.2178115844727, + "relativeCreated": 15636.733055114746, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:38,633" + } + ], + "time_consumption": 0.0001609325408935547 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441618.9353633, + "msecs": 935.3632926940918, + "relativeCreated": 15938.878536224365, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:38,935", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.6336567, + "msecs": 633.6567401885986, + "relativeCreated": 15637.171983718872, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:38,633" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.634286, + "msecs": 634.2859268188477, + "relativeCreated": 15637.801170349121, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,634" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6354935, + "msecs": 635.4935169219971, + "relativeCreated": 15639.00876045227, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:38,635" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6363544, + "msecs": 636.3544464111328, + "relativeCreated": 15639.869689941406, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,636" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6787302, + "msecs": 678.7302494049072, + "relativeCreated": 15682.24549293518, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:38,678" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.6792307, + "msecs": 679.2306900024414, + "relativeCreated": 15682.745933532715, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,679" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.679636, + "msecs": 679.6360015869141, + "relativeCreated": 15683.151245117188, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:38,679" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.679977, + "msecs": 679.9769401550293, + "relativeCreated": 15683.492183685303, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,679" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.680376, + "msecs": 680.3760528564453, + "relativeCreated": 15683.891296386719, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:38,680" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.6807113, + "msecs": 680.7112693786621, + "relativeCreated": 15684.226512908936, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,680" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6810257, + "msecs": 681.0257434844971, + "relativeCreated": 15684.54098701477, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:38,681" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.6812832, + "msecs": 681.2832355499268, + "relativeCreated": 15684.7984790802, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,681" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6815767, + "msecs": 681.5767288208008, + "relativeCreated": 15685.091972351074, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:38,681" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.6818368, + "msecs": 681.8368434906006, + "relativeCreated": 15685.352087020874, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,681" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6820893, + "msecs": 682.0893287658691, + "relativeCreated": 15685.604572296143, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:38,682" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.6823504, + "msecs": 682.3503971099854, + "relativeCreated": 15685.865640640259, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,682" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6826534, + "msecs": 682.6534271240234, + "relativeCreated": 15686.168670654297, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:38,682" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6829782, + "msecs": 682.9781532287598, + "relativeCreated": 15686.493396759033, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,682" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6833022, + "msecs": 683.3021640777588, + "relativeCreated": 15686.817407608032, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,683" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.683608, + "msecs": 683.6080551147461, + "relativeCreated": 15687.12329864502, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,683" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.683907, + "msecs": 683.9070320129395, + "relativeCreated": 15687.422275543213, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,683" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6841955, + "msecs": 684.1955184936523, + "relativeCreated": 15687.710762023926, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,684" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.6844952, + "msecs": 684.495210647583, + "relativeCreated": 15688.010454177856, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,684" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.7268255, + "msecs": 726.825475692749, + "relativeCreated": 15730.340719223022, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2023-02-15 07:13:38,726" + } + ], + "time_consumption": 0.20853781700134277 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441618.9360576, + "msecs": 936.0575675964355, + "relativeCreated": 15939.572811126709, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:38,936", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441618.935782, + "msecs": 935.7819557189941, + "relativeCreated": 15939.297199249268, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:38,935" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441618.9359498, + "msecs": 935.9498023986816, + "relativeCreated": 15939.465045928955, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:38,935" + } + ], + "time_consumption": 0.00010776519775390625 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441618.936409, + "msecs": 936.4089965820312, + "relativeCreated": 15939.924240112305, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:38,936", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441618.9362285, + "msecs": 936.2285137176514, + "relativeCreated": 15939.743757247925, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:38,936" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441618.9363234, + "msecs": 936.3234043121338, + "relativeCreated": 15939.838647842407, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:38,936" + } + ], + "time_consumption": 8.559226989746094e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441619.237602, + "msecs": 237.60199546813965, + "relativeCreated": 16241.117238998413, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:39,237", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.9366932, + "msecs": 936.6931915283203, + "relativeCreated": 15940.208435058594, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:38,936" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9395993, + "msecs": 939.5992755889893, + "relativeCreated": 15943.114519119263, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:13:38,939" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.9401252, + "msecs": 940.1252269744873, + "relativeCreated": 15943.64047050476, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:38,940" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9411318, + "msecs": 941.1318302154541, + "relativeCreated": 15944.647073745728, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:38,941" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9885614, + "msecs": 988.5613918304443, + "relativeCreated": 15992.076635360718, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,988" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.9887981, + "msecs": 988.7981414794922, + "relativeCreated": 15992.313385009766, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,988" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9889803, + "msecs": 988.9802932739258, + "relativeCreated": 15992.4955368042, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,988" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.9891348, + "msecs": 989.1347885131836, + "relativeCreated": 15992.650032043457, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,989" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9893348, + "msecs": 989.3348217010498, + "relativeCreated": 15992.850065231323, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,989" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.9894862, + "msecs": 989.4862174987793, + "relativeCreated": 15993.001461029053, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,989" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.989637, + "msecs": 989.6368980407715, + "relativeCreated": 15993.152141571045, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,989" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.9897895, + "msecs": 989.7894859313965, + "relativeCreated": 15993.30472946167, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,989" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9899719, + "msecs": 989.9718761444092, + "relativeCreated": 15993.487119674683, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,989" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.9901211, + "msecs": 990.1211261749268, + "relativeCreated": 15993.6363697052, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,990" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9902756, + "msecs": 990.2756214141846, + "relativeCreated": 15993.790864944458, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:38,990" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441618.9904253, + "msecs": 990.4253482818604, + "relativeCreated": 15993.940591812134, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:38,990" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.990601, + "msecs": 990.6010627746582, + "relativeCreated": 15994.116306304932, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:38,990" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9907873, + "msecs": 990.7872676849365, + "relativeCreated": 15994.30251121521, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,990" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9909542, + "msecs": 990.9541606903076, + "relativeCreated": 15994.469404220581, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,990" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9911194, + "msecs": 991.119384765625, + "relativeCreated": 15994.634628295898, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,991" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9912972, + "msecs": 991.2972450256348, + "relativeCreated": 15994.812488555908, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,991" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.991449, + "msecs": 991.4491176605225, + "relativeCreated": 15994.964361190796, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,991" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441618.9915996, + "msecs": 991.5995597839355, + "relativeCreated": 15995.114803314209, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:38,991" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.0347784, + "msecs": 34.77835655212402, + "relativeCreated": 16038.293600082397, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:39,034" + } + ], + "time_consumption": 0.20282363891601562 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441619.2383451, + "msecs": 238.34514617919922, + "relativeCreated": 16241.860389709473, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:39,238", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441619.2380672, + "msecs": 238.0671501159668, + "relativeCreated": 16241.58239364624, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:39,238" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441619.2382233, + "msecs": 238.22331428527832, + "relativeCreated": 16241.738557815552, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:39,238" + } + ], + "time_consumption": 0.00012183189392089844 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441619.2388108, + "msecs": 238.81077766418457, + "relativeCreated": 16242.326021194458, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:39,238", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441619.238591, + "msecs": 238.59095573425293, + "relativeCreated": 16242.106199264526, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:39,238" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441619.2387094, + "msecs": 238.7094497680664, + "relativeCreated": 16242.22469329834, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:39,238" + } + ], + "time_consumption": 0.00010132789611816406 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441619.5406427, + "msecs": 540.6427383422852, + "relativeCreated": 16544.15798187256, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:39,540", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.239137, + "msecs": 239.1369342803955, + "relativeCreated": 16242.652177810669, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:39,239" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.239757, + "msecs": 239.75706100463867, + "relativeCreated": 16243.272304534912, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,239" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2408695, + "msecs": 240.86952209472656, + "relativeCreated": 16244.384765625, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:39,240" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2417052, + "msecs": 241.70517921447754, + "relativeCreated": 16245.220422744751, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,241" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2828753, + "msecs": 282.87529945373535, + "relativeCreated": 16286.390542984009, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,282" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.2831132, + "msecs": 283.1132411956787, + "relativeCreated": 16286.628484725952, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,283" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2833295, + "msecs": 283.3294868469238, + "relativeCreated": 16286.844730377197, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,283" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.2835035, + "msecs": 283.50353240966797, + "relativeCreated": 16287.018775939941, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,283" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2837405, + "msecs": 283.7405204772949, + "relativeCreated": 16287.255764007568, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,283" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.2839193, + "msecs": 283.9193344116211, + "relativeCreated": 16287.434577941895, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,283" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2840762, + "msecs": 284.0762138366699, + "relativeCreated": 16287.591457366943, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,284" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.284207, + "msecs": 284.2071056365967, + "relativeCreated": 16287.72234916687, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,284" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2843723, + "msecs": 284.37232971191406, + "relativeCreated": 16287.887573242188, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,284" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.2845016, + "msecs": 284.5015525817871, + "relativeCreated": 16288.01679611206, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,284" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2846286, + "msecs": 284.62862968444824, + "relativeCreated": 16288.143873214722, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,284" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.284759, + "msecs": 284.7590446472168, + "relativeCreated": 16288.27428817749, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,284" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.284922, + "msecs": 284.92188453674316, + "relativeCreated": 16288.437128067017, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:39,284" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2850857, + "msecs": 285.08567810058594, + "relativeCreated": 16288.60092163086, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,285" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2852416, + "msecs": 285.24160385131836, + "relativeCreated": 16288.756847381592, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,285" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.285388, + "msecs": 285.3879928588867, + "relativeCreated": 16288.90323638916, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,285" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2855308, + "msecs": 285.53080558776855, + "relativeCreated": 16289.046049118042, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,285" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.28567, + "msecs": 285.67004203796387, + "relativeCreated": 16289.185285568237, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,285" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.2858107, + "msecs": 285.8107089996338, + "relativeCreated": 16289.325952529907, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,285" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.3270402, + "msecs": 327.0401954650879, + "relativeCreated": 16330.555438995361, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2023-02-15 07:13:39,327" + } + ], + "time_consumption": 0.21360254287719727 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441619.5412934, + "msecs": 541.2933826446533, + "relativeCreated": 16544.808626174927, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:39,541", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441619.541057, + "msecs": 541.0571098327637, + "relativeCreated": 16544.572353363037, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:39,541" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441619.5411863, + "msecs": 541.1863327026367, + "relativeCreated": 16544.70157623291, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:39,541" + } + ], + "time_consumption": 0.00010704994201660156 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441619.5416455, + "msecs": 541.6455268859863, + "relativeCreated": 16545.16077041626, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:39,541", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441619.5414622, + "msecs": 541.4621829986572, + "relativeCreated": 16544.97742652893, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:39,541" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441619.541558, + "msecs": 541.558027267456, + "relativeCreated": 16545.07327079773, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:39,541" + } + ], + "time_consumption": 8.749961853027344e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441619.8432436, + "msecs": 843.2435989379883, + "relativeCreated": 16846.75884246826, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:39,843", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.5418887, + "msecs": 541.8887138366699, + "relativeCreated": 16545.403957366943, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:39,541" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.545178, + "msecs": 545.1779365539551, + "relativeCreated": 16548.69318008423, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:13:39,545" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.545704, + "msecs": 545.7038879394531, + "relativeCreated": 16549.219131469727, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:39,545" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5467176, + "msecs": 546.717643737793, + "relativeCreated": 16550.232887268066, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:39,546" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5922062, + "msecs": 592.2062397003174, + "relativeCreated": 16595.72148323059, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:39,592" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.5924442, + "msecs": 592.4441814422607, + "relativeCreated": 16595.959424972534, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,592" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5926135, + "msecs": 592.6134586334229, + "relativeCreated": 16596.128702163696, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:39,592" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.5927527, + "msecs": 592.7526950836182, + "relativeCreated": 16596.26793861389, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,592" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5929296, + "msecs": 592.9296016693115, + "relativeCreated": 16596.444845199585, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:39,592" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.5930684, + "msecs": 593.0683612823486, + "relativeCreated": 16596.583604812622, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,593" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5932066, + "msecs": 593.2066440582275, + "relativeCreated": 16596.7218875885, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:39,593" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.593344, + "msecs": 593.34397315979, + "relativeCreated": 16596.859216690063, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,593" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5935106, + "msecs": 593.510627746582, + "relativeCreated": 16597.025871276855, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:39,593" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.5936491, + "msecs": 593.64914894104, + "relativeCreated": 16597.164392471313, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,593" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5937836, + "msecs": 593.7836170196533, + "relativeCreated": 16597.298860549927, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:39,593" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.5939202, + "msecs": 593.9202308654785, + "relativeCreated": 16597.435474395752, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,593" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.594084, + "msecs": 594.0840244293213, + "relativeCreated": 16597.599267959595, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:39,594" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5942628, + "msecs": 594.2628383636475, + "relativeCreated": 16597.77808189392, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,594" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5944273, + "msecs": 594.4273471832275, + "relativeCreated": 16597.9425907135, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,594" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5945835, + "msecs": 594.5835113525391, + "relativeCreated": 16598.098754882812, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,594" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5947347, + "msecs": 594.7346687316895, + "relativeCreated": 16598.249912261963, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,594" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.5948977, + "msecs": 594.8977470397949, + "relativeCreated": 16598.41299057007, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,594" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.595041, + "msecs": 595.041036605835, + "relativeCreated": 16598.55628013611, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,595" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.6390443, + "msecs": 639.0442848205566, + "relativeCreated": 16642.55952835083, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:39,639" + } + ], + "time_consumption": 0.20419931411743164 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441619.8439393, + "msecs": 843.9393043518066, + "relativeCreated": 16847.45454788208, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:39,843", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441619.8436668, + "msecs": 843.6667919158936, + "relativeCreated": 16847.182035446167, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:39,843" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441619.8438022, + "msecs": 843.8022136688232, + "relativeCreated": 16847.317457199097, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:39,843" + } + ], + "time_consumption": 0.00013709068298339844 + } + ], + "time_consumption": 1.2111480236053467, + "time_start": "2023-02-15 07:13:38,632", + "time_finished": "2023-02-15 07:13:39,843" + }, + "Brightness synchronisation test: videv/ffe/livingroom/floorlamp": { + "name": "__tLogger__", + "msg": "Brightness synchronisation test: videv/ffe/livingroom/floorlamp", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "test_brightness_sync", + "created": 1676441619.8444662, + "msecs": 844.4662094116211, + "relativeCreated": 16847.981452941895, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness synchronisation test: videv/ffe/livingroom/floorlamp", + "asctime": "2023-02-15 07:13:39,844", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions for master device '%s' (Power on)", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 48, + "funcName": "__test_brightness_sync__", + "created": 1676441620.1461914, + "msecs": 146.19135856628418, + "relativeCreated": 17149.706602096558, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions for master device 'True' (Power on)", + "asctime": "2023-02-15 07:13:40,146", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.844747, + "msecs": 844.7470664978027, + "relativeCreated": 16848.262310028076, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:39,844" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.8452945, + "msecs": 845.2944755554199, + "relativeCreated": 16848.809719085693, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,845" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8462796, + "msecs": 846.2796211242676, + "relativeCreated": 16849.79486465454, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:39,846" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8470342, + "msecs": 847.034215927124, + "relativeCreated": 16850.549459457397, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,847" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8869693, + "msecs": 886.9693279266357, + "relativeCreated": 16890.48457145691, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,886" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.8876493, + "msecs": 887.6492977142334, + "relativeCreated": 16891.164541244507, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,887" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8882437, + "msecs": 888.2436752319336, + "relativeCreated": 16891.758918762207, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,888" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.888761, + "msecs": 888.761043548584, + "relativeCreated": 16892.276287078857, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,888" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8894658, + "msecs": 889.4658088684082, + "relativeCreated": 16892.98105239868, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,889" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.890096, + "msecs": 890.0959491729736, + "relativeCreated": 16893.611192703247, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,890" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8906834, + "msecs": 890.6834125518799, + "relativeCreated": 16894.198656082153, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,890" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.8912017, + "msecs": 891.2017345428467, + "relativeCreated": 16894.71697807312, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,891" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8919778, + "msecs": 891.9777870178223, + "relativeCreated": 16895.493030548096, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,891" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.8921213, + "msecs": 892.1213150024414, + "relativeCreated": 16895.636558532715, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,892" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8922617, + "msecs": 892.2617435455322, + "relativeCreated": 16895.776987075806, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:39,892" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441619.892399, + "msecs": 892.3990726470947, + "relativeCreated": 16895.914316177368, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:39,892" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8925667, + "msecs": 892.5666809082031, + "relativeCreated": 16896.081924438477, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:39,892" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8927407, + "msecs": 892.7407264709473, + "relativeCreated": 16896.25597000122, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,892" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.892901, + "msecs": 892.9009437561035, + "relativeCreated": 16896.416187286377, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,892" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8930566, + "msecs": 893.0566310882568, + "relativeCreated": 16896.57187461853, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,893" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8932152, + "msecs": 893.2151794433594, + "relativeCreated": 16896.730422973633, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,893" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8933668, + "msecs": 893.366813659668, + "relativeCreated": 16896.88205718994, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,893" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.8935184, + "msecs": 893.5184478759766, + "relativeCreated": 16897.03369140625, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:39,893" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441619.9350343, + "msecs": 935.0342750549316, + "relativeCreated": 16938.549518585205, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2023-02-15 07:13:39,935" + } + ], + "time_consumption": 0.21115708351135254 + }, + { + "name": "__tLogger__", + "msg": "Changing master device brightness to '%d'", + "args": [ + 35 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 56, + "funcName": "__test_brightness_sync__", + "created": 1676441620.4478233, + "msecs": 447.82328605651855, + "relativeCreated": 17451.338529586792, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device brightness to '35'", + "asctime": "2023-02-15 07:13:40,447", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/brightness/set", + "35" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.1468751, + "msecs": 146.87514305114746, + "relativeCreated": 17150.39038658142, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 35", + "asctime": "2023-02-15 07:13:40,146" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"brightness\": 90}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.152739, + "msecs": 152.7390480041504, + "relativeCreated": 17156.254291534424, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"brightness\": 90}'", + "asctime": "2023-02-15 07:13:40,152" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.1533186, + "msecs": 153.3186435699463, + "relativeCreated": 17156.83388710022, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,153" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"brightness\": 90}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.153496, + "msecs": 153.49602699279785, + "relativeCreated": 17157.01127052307, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"brightness\": 90}'", + "asctime": "2023-02-15 07:13:40,153" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.1536555, + "msecs": 153.6555290222168, + "relativeCreated": 17157.17077255249, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,153" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"brightness\": 90}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.1538572, + "msecs": 153.85723114013672, + "relativeCreated": 17157.37247467041, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"brightness\": 90}'", + "asctime": "2023-02-15 07:13:40,153" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.154017, + "msecs": 154.01697158813477, + "relativeCreated": 17157.53221511841, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,154" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"brightness\": 90}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.1541789, + "msecs": 154.17885780334473, + "relativeCreated": 17157.694101333618, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"brightness\": 90}'", + "asctime": "2023-02-15 07:13:40,154" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.1543336, + "msecs": 154.33359146118164, + "relativeCreated": 17157.848834991455, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,154" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"brightness\": 90}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.1545496, + "msecs": 154.54959869384766, + "relativeCreated": 17158.06484222412, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"brightness\": 90}'", + "asctime": "2023-02-15 07:13:40,154" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.1547096, + "msecs": 154.7095775604248, + "relativeCreated": 17158.2248210907, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,154" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"brightness\": 90}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.1548727, + "msecs": 154.87265586853027, + "relativeCreated": 17158.387899398804, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"brightness\": 90}'", + "asctime": "2023-02-15 07:13:40,154" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.155029, + "msecs": 155.0290584564209, + "relativeCreated": 17158.544301986694, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,155" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.1552184, + "msecs": 155.21836280822754, + "relativeCreated": 17158.7336063385, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,155" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.1554158, + "msecs": 155.41577339172363, + "relativeCreated": 17158.931016921997, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,155" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.1556013, + "msecs": 155.60126304626465, + "relativeCreated": 17159.116506576538, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,155" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.1557817, + "msecs": 155.78174591064453, + "relativeCreated": 17159.296989440918, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,155" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.155961, + "msecs": 155.9610366821289, + "relativeCreated": 17159.476280212402, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,155" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.156138, + "msecs": 156.13794326782227, + "relativeCreated": 17159.653186798096, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,156" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/brightness", + "b'35'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.1987617, + "msecs": 198.7617015838623, + "relativeCreated": 17202.276945114136, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'35'", + "asctime": "2023-02-15 07:13:40,198" + } + ], + "time_consumption": 0.24906158447265625 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness is correct (Content %s and Type is %s).", + "args": [ + "35", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.448519, + "msecs": 448.5189914703369, + "relativeCreated": 17452.03423500061, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness is correct (Content 35 and Type is ).", + "asctime": "2023-02-15 07:13:40,448", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.4482396, + "msecs": 448.2395648956299, + "relativeCreated": 17451.754808425903, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness): 35 ()", + "asctime": "2023-02-15 07:13:40,448" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness", + "=", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.4483743, + "msecs": 448.37427139282227, + "relativeCreated": 17451.889514923096, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness): result = 35 ()", + "asctime": "2023-02-15 07:13:40,448" + } + ], + "time_consumption": 0.00014472007751464844 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness is correct (Content %s and Type is %s).", + "args": [ + "35", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.448895, + "msecs": 448.8949775695801, + "relativeCreated": 17452.410221099854, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness is correct (Content 35 and Type is ).", + "asctime": "2023-02-15 07:13:40,448", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.4486957, + "msecs": 448.6956596374512, + "relativeCreated": 17452.210903167725, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness): 35 ()", + "asctime": "2023-02-15 07:13:40,448" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness", + "=", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.448806, + "msecs": 448.8060474395752, + "relativeCreated": 17452.32129096985, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness): result = 35 ()", + "asctime": "2023-02-15 07:13:40,448" + } + ], + "time_consumption": 8.893013000488281e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness is correct (Content %s and Type is %s).", + "args": [ + "35", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.44922, + "msecs": 449.2199420928955, + "relativeCreated": 17452.73518562317, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness is correct (Content 35 and Type is ).", + "asctime": "2023-02-15 07:13:40,449", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.449048, + "msecs": 449.0480422973633, + "relativeCreated": 17452.563285827637, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness): 35 ()", + "asctime": "2023-02-15 07:13:40,449" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness", + "=", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.4491374, + "msecs": 449.13744926452637, + "relativeCreated": 17452.6526927948, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness): result = 35 ()", + "asctime": "2023-02-15 07:13:40,449" + } + ], + "time_consumption": 8.249282836914062e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness is correct (Content %s and Type is %s).", + "args": [ + "35", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.4495442, + "msecs": 449.54419136047363, + "relativeCreated": 17453.059434890747, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness is correct (Content 35 and Type is ).", + "asctime": "2023-02-15 07:13:40,449", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.4493628, + "msecs": 449.36275482177734, + "relativeCreated": 17452.87799835205, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness): 35 ()", + "asctime": "2023-02-15 07:13:40,449" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness", + "=", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.4494495, + "msecs": 449.4495391845703, + "relativeCreated": 17452.964782714844, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness): result = 35 ()", + "asctime": "2023-02-15 07:13:40,449" + } + ], + "time_consumption": 9.465217590332031e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness is correct (Content %s and Type is %s).", + "args": [ + "35", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.4498646, + "msecs": 449.86462593078613, + "relativeCreated": 17453.37986946106, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness is correct (Content 35 and Type is ).", + "asctime": "2023-02-15 07:13:40,449", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.4496858, + "msecs": 449.68581199645996, + "relativeCreated": 17453.201055526733, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness): 35 ()", + "asctime": "2023-02-15 07:13:40,449" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness", + "=", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.4497733, + "msecs": 449.77331161499023, + "relativeCreated": 17453.288555145264, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness): result = 35 ()", + "asctime": "2023-02-15 07:13:40,449" + } + ], + "time_consumption": 9.131431579589844e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness is correct (Content %s and Type is %s).", + "args": [ + "35", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.4501908, + "msecs": 450.19078254699707, + "relativeCreated": 17453.70602607727, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness is correct (Content 35 and Type is ).", + "asctime": "2023-02-15 07:13:40,450", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.4500072, + "msecs": 450.00720024108887, + "relativeCreated": 17453.522443771362, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness): 35 ()", + "asctime": "2023-02-15 07:13:40,450" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness", + "=", + "35", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.450106, + "msecs": 450.1059055328369, + "relativeCreated": 17453.62114906311, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness): result = 35 ()", + "asctime": "2023-02-15 07:13:40,450" + } + ], + "time_consumption": 8.487701416015625e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing master device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 56, + "funcName": "__test_brightness_sync__", + "created": 1676441620.7515185, + "msecs": 751.5184879302979, + "relativeCreated": 17755.03373146057, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device brightness to '50'", + "asctime": "2023-02-15 07:13:40,751", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.450457, + "msecs": 450.4570960998535, + "relativeCreated": 17453.972339630127, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 50", + "asctime": "2023-02-15 07:13:40,450" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4553947, + "msecs": 455.3947448730469, + "relativeCreated": 17458.90998840332, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:40,455" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.455988, + "msecs": 455.98793029785156, + "relativeCreated": 17459.503173828125, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,455" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4565737, + "msecs": 456.5737247467041, + "relativeCreated": 17460.088968276978, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:40,456" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.4570835, + "msecs": 457.08346366882324, + "relativeCreated": 17460.598707199097, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,457" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4577453, + "msecs": 457.7453136444092, + "relativeCreated": 17461.260557174683, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:40,457" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.4582481, + "msecs": 458.2481384277344, + "relativeCreated": 17461.763381958008, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,458" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4588094, + "msecs": 458.80937576293945, + "relativeCreated": 17462.324619293213, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:40,458" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.4593227, + "msecs": 459.3226909637451, + "relativeCreated": 17462.83793449402, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,459" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4599793, + "msecs": 459.9792957305908, + "relativeCreated": 17463.494539260864, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:40,459" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.4604912, + "msecs": 460.4911804199219, + "relativeCreated": 17464.006423950195, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,460" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4608862, + "msecs": 460.88624000549316, + "relativeCreated": 17464.401483535767, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:40,460" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.4610124, + "msecs": 461.0123634338379, + "relativeCreated": 17464.52760696411, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,461" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4611638, + "msecs": 461.1637592315674, + "relativeCreated": 17464.67900276184, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,461" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.461317, + "msecs": 461.3170623779297, + "relativeCreated": 17464.832305908203, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,461" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4614635, + "msecs": 461.46345138549805, + "relativeCreated": 17464.97869491577, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,461" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4616075, + "msecs": 461.6074562072754, + "relativeCreated": 17465.12269973755, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,461" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4617496, + "msecs": 461.7495536804199, + "relativeCreated": 17465.264797210693, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,461" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.4618902, + "msecs": 461.89022064208984, + "relativeCreated": 17465.405464172363, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,461" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.5027604, + "msecs": 502.7604103088379, + "relativeCreated": 17506.27565383911, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:40,502" + } + ], + "time_consumption": 0.24875807762145996 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.752329, + "msecs": 752.3291110992432, + "relativeCreated": 17755.844354629517, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:40,752", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.7520041, + "msecs": 752.0041465759277, + "relativeCreated": 17755.5193901062, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness): 50 ()", + "asctime": "2023-02-15 07:13:40,752" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.7521985, + "msecs": 752.1984577178955, + "relativeCreated": 17755.71370124817, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:40,752" + } + ], + "time_consumption": 0.00013065338134765625 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.7527475, + "msecs": 752.7475357055664, + "relativeCreated": 17756.26277923584, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:40,752", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.7525315, + "msecs": 752.5315284729004, + "relativeCreated": 17756.046772003174, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness): 50 ()", + "asctime": "2023-02-15 07:13:40,752" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.7526448, + "msecs": 752.6447772979736, + "relativeCreated": 17756.160020828247, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:40,752" + } + ], + "time_consumption": 0.00010275840759277344 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.7531247, + "msecs": 753.1247138977051, + "relativeCreated": 17756.63995742798, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:40,753", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.7529225, + "msecs": 752.922534942627, + "relativeCreated": 17756.4377784729, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness): 50 ()", + "asctime": "2023-02-15 07:13:40,752" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.7530277, + "msecs": 753.0276775360107, + "relativeCreated": 17756.542921066284, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:40,753" + } + ], + "time_consumption": 9.703636169433594e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.753529, + "msecs": 753.5290718078613, + "relativeCreated": 17757.044315338135, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:40,753", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.7533126, + "msecs": 753.3125877380371, + "relativeCreated": 17756.82783126831, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness): 50 ()", + "asctime": "2023-02-15 07:13:40,753" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.7534208, + "msecs": 753.4208297729492, + "relativeCreated": 17756.936073303223, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:40,753" + } + ], + "time_consumption": 0.00010824203491210938 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.7539067, + "msecs": 753.9067268371582, + "relativeCreated": 17757.42197036743, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:40,753", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.7536943, + "msecs": 753.6942958831787, + "relativeCreated": 17757.209539413452, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness): 50 ()", + "asctime": "2023-02-15 07:13:40,753" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.7537975, + "msecs": 753.7975311279297, + "relativeCreated": 17757.312774658203, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:40,753" + } + ], + "time_consumption": 0.00010919570922851562 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441620.7542846, + "msecs": 754.2846202850342, + "relativeCreated": 17757.799863815308, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:40,754", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441620.7540867, + "msecs": 754.0867328643799, + "relativeCreated": 17757.601976394653, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness): 50 ()", + "asctime": "2023-02-15 07:13:40,754" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441620.754191, + "msecs": 754.1909217834473, + "relativeCreated": 17757.70616531372, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:40,754" + } + ], + "time_consumption": 9.369850158691406e-05 + }, + { + "name": "__tLogger__", + "msg": "Resetting preconditions for master device '%s' (Power off)", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 64, + "funcName": "__test_brightness_sync__", + "created": 1676441621.0555713, + "msecs": 55.57131767272949, + "relativeCreated": 18059.086561203003, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting preconditions for master device 'False' (Power off)", + "asctime": "2023-02-15 07:13:41,055", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.7545986, + "msecs": 754.5986175537109, + "relativeCreated": 17758.113861083984, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:40,754" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7559066, + "msecs": 755.9065818786621, + "relativeCreated": 17759.421825408936, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:40,755" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7610748, + "msecs": 761.0747814178467, + "relativeCreated": 17764.59002494812, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:40,761" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.7612667, + "msecs": 761.2667083740234, + "relativeCreated": 17764.781951904297, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,761" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7614436, + "msecs": 761.4436149597168, + "relativeCreated": 17764.95885848999, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:40,761" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.7616053, + "msecs": 761.6052627563477, + "relativeCreated": 17765.12050628662, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,761" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7618046, + "msecs": 761.8045806884766, + "relativeCreated": 17765.31982421875, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:40,761" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.76196, + "msecs": 761.9600296020508, + "relativeCreated": 17765.475273132324, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,761" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.762115, + "msecs": 762.1150016784668, + "relativeCreated": 17765.63024520874, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:40,762" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.762267, + "msecs": 762.2671127319336, + "relativeCreated": 17765.782356262207, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,762" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7624688, + "msecs": 762.4688148498535, + "relativeCreated": 17765.984058380127, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:40,762" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.762629, + "msecs": 762.6290321350098, + "relativeCreated": 17766.144275665283, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,762" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7627828, + "msecs": 762.7828121185303, + "relativeCreated": 17766.298055648804, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:40,762" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441620.7629344, + "msecs": 762.9344463348389, + "relativeCreated": 17766.449689865112, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:40,762" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7631264, + "msecs": 763.1263732910156, + "relativeCreated": 17766.64161682129, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:40,763" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7633147, + "msecs": 763.3147239685059, + "relativeCreated": 17766.82996749878, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,763" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.763485, + "msecs": 763.4849548339844, + "relativeCreated": 17767.000198364258, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,763" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7636569, + "msecs": 763.6568546295166, + "relativeCreated": 17767.17209815979, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,763" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7638192, + "msecs": 763.8192176818848, + "relativeCreated": 17767.33446121216, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,763" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.7639832, + "msecs": 763.9832496643066, + "relativeCreated": 17767.49849319458, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,763" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.764147, + "msecs": 764.1470432281494, + "relativeCreated": 17767.662286758423, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:40,764" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441620.806873, + "msecs": 806.873083114624, + "relativeCreated": 17810.388326644897, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:40,806" + } + ], + "time_consumption": 0.24869823455810547 + } + ], + "time_consumption": 1.2111051082611084, + "time_start": "2023-02-15 07:13:39,844", + "time_finished": "2023-02-15 07:13:41,055" + }, + "Color temperature synchronisation test: videv/ffe/livingroom/floorlamp": { + "name": "__tLogger__", + "msg": "Color temperature synchronisation test: videv/ffe/livingroom/floorlamp", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 67, + "funcName": "test_color_temp_sync", + "created": 1676441621.0562675, + "msecs": 56.267499923706055, + "relativeCreated": 18059.78274345398, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Color temperature synchronisation test: videv/ffe/livingroom/floorlamp", + "asctime": "2023-02-15 07:13:41,056", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions for master device '%s' (Power on)", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 73, + "funcName": "__test_color_temp_sync__", + "created": 1676441621.358075, + "msecs": 358.0749034881592, + "relativeCreated": 18361.590147018433, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions for master device 'True' (Power on)", + "asctime": "2023-02-15 07:13:41,358", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.0565798, + "msecs": 56.5798282623291, + "relativeCreated": 18060.095071792603, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:41,056" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.0571754, + "msecs": 57.175397872924805, + "relativeCreated": 18060.6906414032, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,057" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.058376, + "msecs": 58.37607383728027, + "relativeCreated": 18061.891317367554, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:41,058" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.059237, + "msecs": 59.237003326416016, + "relativeCreated": 18062.75224685669, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,059" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.0989504, + "msecs": 98.95038604736328, + "relativeCreated": 18102.465629577637, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:41,098" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.0993724, + "msecs": 99.37238693237305, + "relativeCreated": 18102.887630462646, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,099" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.0998142, + "msecs": 99.81417655944824, + "relativeCreated": 18103.32942008972, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:41,099" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.1006904, + "msecs": 100.69036483764648, + "relativeCreated": 18104.20560836792, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,100" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.1012986, + "msecs": 101.29857063293457, + "relativeCreated": 18104.813814163208, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:41,101" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.1017168, + "msecs": 101.71675682067871, + "relativeCreated": 18105.232000350952, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,101" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.1021307, + "msecs": 102.13065147399902, + "relativeCreated": 18105.645895004272, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:41,102" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.1025646, + "msecs": 102.56457328796387, + "relativeCreated": 18106.079816818237, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,102" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.103099, + "msecs": 103.09910774230957, + "relativeCreated": 18106.614351272583, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:41,103" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.1034966, + "msecs": 103.49655151367188, + "relativeCreated": 18107.011795043945, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,103" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.1038935, + "msecs": 103.89351844787598, + "relativeCreated": 18107.40876197815, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:41,103" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.1042888, + "msecs": 104.28881645202637, + "relativeCreated": 18107.8040599823, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,104" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.10477, + "msecs": 104.76994514465332, + "relativeCreated": 18108.285188674927, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:41,104" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.105389, + "msecs": 105.38911819458008, + "relativeCreated": 18108.904361724854, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,105" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.1059766, + "msecs": 105.97658157348633, + "relativeCreated": 18109.49182510376, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,105" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.106611, + "msecs": 106.61101341247559, + "relativeCreated": 18110.12625694275, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,106" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.107186, + "msecs": 107.18607902526855, + "relativeCreated": 18110.701322555542, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,107" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.107764, + "msecs": 107.76400566101074, + "relativeCreated": 18111.279249191284, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,107" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.1083302, + "msecs": 108.33024978637695, + "relativeCreated": 18111.84549331665, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,108" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.1473694, + "msecs": 147.369384765625, + "relativeCreated": 18150.8846282959, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2023-02-15 07:13:41,147" + } + ], + "time_consumption": 0.21070551872253418 + }, + { + "name": "__tLogger__", + "msg": "Changing master device color temperature to '%d'", + "args": [ + 2 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 81, + "funcName": "__test_color_temp_sync__", + "created": 1676441621.658692, + "msecs": 658.6918830871582, + "relativeCreated": 18662.20712661743, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device color temperature to '2'", + "asctime": "2023-02-15 07:13:41,658", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/color_temp/set", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.3583057, + "msecs": 358.3056926727295, + "relativeCreated": 18361.820936203003, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 2", + "asctime": "2023-02-15 07:13:41,358" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3602288, + "msecs": 360.2287769317627, + "relativeCreated": 18363.744020462036, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"color_temp\": 291}'", + "asctime": "2023-02-15 07:13:41,360" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.3604574, + "msecs": 360.4574203491211, + "relativeCreated": 18363.972663879395, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}", + "asctime": "2023-02-15 07:13:41,360" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3606594, + "msecs": 360.6593608856201, + "relativeCreated": 18364.174604415894, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"color_temp\": 291}'", + "asctime": "2023-02-15 07:13:41,360" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.3608246, + "msecs": 360.8245849609375, + "relativeCreated": 18364.33982849121, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}", + "asctime": "2023-02-15 07:13:41,360" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3610342, + "msecs": 361.0341548919678, + "relativeCreated": 18364.54939842224, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"color_temp\": 291}'", + "asctime": "2023-02-15 07:13:41,361" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.3612182, + "msecs": 361.2182140350342, + "relativeCreated": 18364.733457565308, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}", + "asctime": "2023-02-15 07:13:41,361" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3614063, + "msecs": 361.4063262939453, + "relativeCreated": 18364.92156982422, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"color_temp\": 291}'", + "asctime": "2023-02-15 07:13:41,361" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.361596, + "msecs": 361.59610748291016, + "relativeCreated": 18365.111351013184, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}", + "asctime": "2023-02-15 07:13:41,361" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3618243, + "msecs": 361.82427406311035, + "relativeCreated": 18365.339517593384, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"color_temp\": 291}'", + "asctime": "2023-02-15 07:13:41,361" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.362015, + "msecs": 362.0150089263916, + "relativeCreated": 18365.530252456665, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}", + "asctime": "2023-02-15 07:13:41,362" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3622007, + "msecs": 362.2007369995117, + "relativeCreated": 18365.715980529785, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"color_temp\": 291}'", + "asctime": "2023-02-15 07:13:41,362" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.3623848, + "msecs": 362.3847961425781, + "relativeCreated": 18365.90003967285, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}", + "asctime": "2023-02-15 07:13:41,362" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3626215, + "msecs": 362.621545791626, + "relativeCreated": 18366.1367893219, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'", + "asctime": "2023-02-15 07:13:41,362" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3628464, + "msecs": 362.84637451171875, + "relativeCreated": 18366.361618041992, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'", + "asctime": "2023-02-15 07:13:41,362" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.363059, + "msecs": 363.05904388427734, + "relativeCreated": 18366.57428741455, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'", + "asctime": "2023-02-15 07:13:41,363" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3632681, + "msecs": 363.2681369781494, + "relativeCreated": 18366.783380508423, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'", + "asctime": "2023-02-15 07:13:41,363" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3634777, + "msecs": 363.4777069091797, + "relativeCreated": 18366.992950439453, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'", + "asctime": "2023-02-15 07:13:41,363" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.3636858, + "msecs": 363.68584632873535, + "relativeCreated": 18367.20108985901, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'", + "asctime": "2023-02-15 07:13:41,363" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/color_temp", + "b'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.4067621, + "msecs": 406.76212310791016, + "relativeCreated": 18410.277366638184, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'2'", + "asctime": "2023-02-15 07:13:41,406" + } + ], + "time_consumption": 0.25192975997924805 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.6593442, + "msecs": 659.3441963195801, + "relativeCreated": 18662.859439849854, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature is correct (Content 2 and Type is ).", + "asctime": "2023-02-15 07:13:41,659", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.6590986, + "msecs": 659.0986251831055, + "relativeCreated": 18662.61386871338, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature): 2 ()", + "asctime": "2023-02-15 07:13:41,659" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.659235, + "msecs": 659.2350006103516, + "relativeCreated": 18662.750244140625, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature): result = 2 ()", + "asctime": "2023-02-15 07:13:41,659" + } + ], + "time_consumption": 0.00010919570922851562 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.6597672, + "msecs": 659.7671508789062, + "relativeCreated": 18663.28239440918, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature is correct (Content 2 and Type is ).", + "asctime": "2023-02-15 07:13:41,659", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.6595454, + "msecs": 659.5454216003418, + "relativeCreated": 18663.060665130615, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature): 2 ()", + "asctime": "2023-02-15 07:13:41,659" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.6596456, + "msecs": 659.6455574035645, + "relativeCreated": 18663.160800933838, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature): result = 2 ()", + "asctime": "2023-02-15 07:13:41,659" + } + ], + "time_consumption": 0.00012159347534179688 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.6600976, + "msecs": 660.097599029541, + "relativeCreated": 18663.612842559814, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature is correct (Content 2 and Type is ).", + "asctime": "2023-02-15 07:13:41,660", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.6599207, + "msecs": 659.9206924438477, + "relativeCreated": 18663.43593597412, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature): 2 ()", + "asctime": "2023-02-15 07:13:41,659" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.6600118, + "msecs": 660.0117683410645, + "relativeCreated": 18663.527011871338, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature): result = 2 ()", + "asctime": "2023-02-15 07:13:41,660" + } + ], + "time_consumption": 8.58306884765625e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.6604416, + "msecs": 660.4416370391846, + "relativeCreated": 18663.956880569458, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature is correct (Content 2 and Type is ).", + "asctime": "2023-02-15 07:13:41,660", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.6602542, + "msecs": 660.2542400360107, + "relativeCreated": 18663.769483566284, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature): 2 ()", + "asctime": "2023-02-15 07:13:41,660" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.6603458, + "msecs": 660.3457927703857, + "relativeCreated": 18663.86103630066, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature): result = 2 ()", + "asctime": "2023-02-15 07:13:41,660" + } + ], + "time_consumption": 9.584426879882812e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.6607678, + "msecs": 660.7677936553955, + "relativeCreated": 18664.28303718567, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature is correct (Content 2 and Type is ).", + "asctime": "2023-02-15 07:13:41,660", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.6605844, + "msecs": 660.5844497680664, + "relativeCreated": 18664.09969329834, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature): 2 ()", + "asctime": "2023-02-15 07:13:41,660" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.660682, + "msecs": 660.681962966919, + "relativeCreated": 18664.197206497192, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature): result = 2 ()", + "asctime": "2023-02-15 07:13:41,660" + } + ], + "time_consumption": 8.58306884765625e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.6610763, + "msecs": 661.0763072967529, + "relativeCreated": 18664.591550827026, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature is correct (Content 2 and Type is ).", + "asctime": "2023-02-15 07:13:41,661", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.6609087, + "msecs": 660.9086990356445, + "relativeCreated": 18664.423942565918, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature): 2 ()", + "asctime": "2023-02-15 07:13:41,660" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.6609945, + "msecs": 660.9945297241211, + "relativeCreated": 18664.509773254395, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature): result = 2 ()", + "asctime": "2023-02-15 07:13:41,660" + } + ], + "time_consumption": 8.177757263183594e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing master device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 81, + "funcName": "__test_color_temp_sync__", + "created": 1676441621.962414, + "msecs": 962.414026260376, + "relativeCreated": 18965.92926979065, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device color temperature to '5'", + "asctime": "2023-02-15 07:13:41,962", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.6613204, + "msecs": 661.3204479217529, + "relativeCreated": 18664.835691452026, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 5", + "asctime": "2023-02-15 07:13:41,661" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.666226, + "msecs": 666.2259101867676, + "relativeCreated": 18669.74115371704, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:41,666" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.666861, + "msecs": 666.8610572814941, + "relativeCreated": 18670.376300811768, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,666" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.6674576, + "msecs": 667.4575805664062, + "relativeCreated": 18670.97282409668, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:41,667" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.6679678, + "msecs": 667.9677963256836, + "relativeCreated": 18671.483039855957, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,667" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.668654, + "msecs": 668.6539649963379, + "relativeCreated": 18672.16920852661, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:41,668" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.6691666, + "msecs": 669.1665649414062, + "relativeCreated": 18672.68180847168, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,669" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.66971, + "msecs": 669.7099208831787, + "relativeCreated": 18673.225164413452, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:41,669" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.670212, + "msecs": 670.2120304107666, + "relativeCreated": 18673.72727394104, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,670" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.6708357, + "msecs": 670.8357334136963, + "relativeCreated": 18674.35097694397, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:41,670" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.6709728, + "msecs": 670.9728240966797, + "relativeCreated": 18674.488067626953, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,670" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.671107, + "msecs": 671.1070537567139, + "relativeCreated": 18674.622297286987, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:41,671" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.6712477, + "msecs": 671.2477207183838, + "relativeCreated": 18674.762964248657, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,671" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.671412, + "msecs": 671.4119911193848, + "relativeCreated": 18674.92723464966, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,671" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.67158, + "msecs": 671.5800762176514, + "relativeCreated": 18675.095319747925, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,671" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.6717396, + "msecs": 671.7395782470703, + "relativeCreated": 18675.254821777344, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,671" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.6718953, + "msecs": 671.8952655792236, + "relativeCreated": 18675.410509109497, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,671" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.6720634, + "msecs": 672.0633506774902, + "relativeCreated": 18675.578594207764, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,672" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.672211, + "msecs": 672.2109317779541, + "relativeCreated": 18675.726175308228, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,672" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.7149158, + "msecs": 714.9157524108887, + "relativeCreated": 18718.430995941162, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:41,714" + } + ], + "time_consumption": 0.2474982738494873 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.9632185, + "msecs": 963.2184505462646, + "relativeCreated": 18966.733694076538, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:41,963", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.9629347, + "msecs": 962.9347324371338, + "relativeCreated": 18966.449975967407, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature): 5 ()", + "asctime": "2023-02-15 07:13:41,962" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.9630935, + "msecs": 963.0935192108154, + "relativeCreated": 18966.60876274109, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:41,963" + } + ], + "time_consumption": 0.00012493133544921875 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.9636674, + "msecs": 963.6673927307129, + "relativeCreated": 18967.182636260986, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:41,963", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.9634507, + "msecs": 963.4506702423096, + "relativeCreated": 18966.965913772583, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature): 5 ()", + "asctime": "2023-02-15 07:13:41,963" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.9635673, + "msecs": 963.5672569274902, + "relativeCreated": 18967.082500457764, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:41,963" + } + ], + "time_consumption": 0.00010013580322265625 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.9640586, + "msecs": 964.0586376190186, + "relativeCreated": 18967.573881149292, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:41,964", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.9638426, + "msecs": 963.8426303863525, + "relativeCreated": 18967.357873916626, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature): 5 ()", + "asctime": "2023-02-15 07:13:41,963" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.963948, + "msecs": 963.9480113983154, + "relativeCreated": 18967.46325492859, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:41,963" + } + ], + "time_consumption": 0.000110626220703125 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.9644415, + "msecs": 964.4415378570557, + "relativeCreated": 18967.95678138733, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:41,964", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.9642375, + "msecs": 964.2374515533447, + "relativeCreated": 18967.752695083618, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature): 5 ()", + "asctime": "2023-02-15 07:13:41,964" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.964344, + "msecs": 964.3440246582031, + "relativeCreated": 18967.859268188477, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:41,964" + } + ], + "time_consumption": 9.751319885253906e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.9648077, + "msecs": 964.8077487945557, + "relativeCreated": 18968.32299232483, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:41,964", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.9646049, + "msecs": 964.6048545837402, + "relativeCreated": 18968.120098114014, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature): 5 ()", + "asctime": "2023-02-15 07:13:41,964" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.9647105, + "msecs": 964.7104740142822, + "relativeCreated": 18968.225717544556, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:41,964" + } + ], + "time_consumption": 9.72747802734375e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441621.9651985, + "msecs": 965.1985168457031, + "relativeCreated": 18968.713760375977, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:41,965", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441621.9649956, + "msecs": 964.9956226348877, + "relativeCreated": 18968.51086616516, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature): 5 ()", + "asctime": "2023-02-15 07:13:41,964" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441621.9651015, + "msecs": 965.1014804840088, + "relativeCreated": 18968.616724014282, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:41,965" + } + ], + "time_consumption": 9.703636169433594e-05 + }, + { + "name": "__tLogger__", + "msg": "Resetting preconditions for master device '%s' (Power off)", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 89, + "funcName": "__test_color_temp_sync__", + "created": 1676441622.266635, + "msecs": 266.6349411010742, + "relativeCreated": 19270.150184631348, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting preconditions for master device 'False' (Power off)", + "asctime": "2023-02-15 07:13:42,266", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.9654713, + "msecs": 965.4712677001953, + "relativeCreated": 18968.98651123047, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:41,965" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9668312, + "msecs": 966.8312072753906, + "relativeCreated": 18970.346450805664, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:41,966" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9720051, + "msecs": 972.0051288604736, + "relativeCreated": 18975.520372390747, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:41,972" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.9721947, + "msecs": 972.1946716308594, + "relativeCreated": 18975.709915161133, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,972" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9723814, + "msecs": 972.3813533782959, + "relativeCreated": 18975.89659690857, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:41,972" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.9725668, + "msecs": 972.5668430328369, + "relativeCreated": 18976.08208656311, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,972" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9727993, + "msecs": 972.7993011474609, + "relativeCreated": 18976.314544677734, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:41,972" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.9729846, + "msecs": 972.9845523834229, + "relativeCreated": 18976.499795913696, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,972" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9731677, + "msecs": 973.1676578521729, + "relativeCreated": 18976.682901382446, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:41,973" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.9733503, + "msecs": 973.3502864837646, + "relativeCreated": 18976.865530014038, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,973" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9735708, + "msecs": 973.5708236694336, + "relativeCreated": 18977.086067199707, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:41,973" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.973753, + "msecs": 973.7529754638672, + "relativeCreated": 18977.26821899414, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,973" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9739285, + "msecs": 973.9284515380859, + "relativeCreated": 18977.44369506836, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:41,973" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441621.9741185, + "msecs": 974.1184711456299, + "relativeCreated": 18977.633714675903, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:41,974" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.974341, + "msecs": 974.3409156799316, + "relativeCreated": 18977.856159210205, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:41,974" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.974588, + "msecs": 974.5879173278809, + "relativeCreated": 18978.103160858154, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,974" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9748013, + "msecs": 974.8013019561768, + "relativeCreated": 18978.31654548645, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,974" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9750087, + "msecs": 975.0087261199951, + "relativeCreated": 18978.52396965027, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,975" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.975212, + "msecs": 975.2120971679688, + "relativeCreated": 18978.727340698242, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,975" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9754243, + "msecs": 975.4242897033691, + "relativeCreated": 18978.939533233643, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,975" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441621.9756262, + "msecs": 975.6262302398682, + "relativeCreated": 18979.14147377014, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:41,975" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.0177822, + "msecs": 17.782211303710938, + "relativeCreated": 19021.297454833984, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:42,017" + } + ], + "time_consumption": 0.24885272979736328 + } + ], + "time_consumption": 1.2103674411773682, + "time_start": "2023-02-15 07:13:41,056", + "time_finished": "2023-02-15 07:13:42,266" + }, + "Power On/ Off synchronisation test: shellies/ffe/livingroom/main_light": { + "name": "__tLogger__", + "msg": "Power On/ Off synchronisation test: shellies/ffe/livingroom/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 24, + "funcName": "test_power_on_off_sync", + "created": 1676441622.2674353, + "msecs": 267.43531227111816, + "relativeCreated": 19270.95055580139, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off synchronisation test: shellies/ffe/livingroom/main_light", + "asctime": "2023-02-15 07:13:42,267", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions for master device '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 30, + "funcName": "__test_power_on_off_sync__", + "created": 1676441622.5684233, + "msecs": 568.4232711791992, + "relativeCreated": 19571.938514709473, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions for master device 'False'", + "asctime": "2023-02-15 07:13:42,568", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Changing master device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off_sync__", + "created": 1676441622.8705611, + "msecs": 870.5611228942871, + "relativeCreated": 19874.07636642456, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device state to 'True'", + "asctime": "2023-02-15 07:13:42,870", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.5689218, + "msecs": 568.9218044281006, + "relativeCreated": 19572.437047958374, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:42,568" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.569517, + "msecs": 569.5168972015381, + "relativeCreated": 19573.03214073181, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,569" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.5705667, + "msecs": 570.5666542053223, + "relativeCreated": 19574.081897735596, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:42,570" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.5712833, + "msecs": 571.2833404541016, + "relativeCreated": 19574.798583984375, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,571" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6109028, + "msecs": 610.9027862548828, + "relativeCreated": 19614.418029785156, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:42,610" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.6112354, + "msecs": 611.2353801727295, + "relativeCreated": 19614.750623703003, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,611" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6115801, + "msecs": 611.5801334381104, + "relativeCreated": 19615.095376968384, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:42,611" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.6118727, + "msecs": 611.872673034668, + "relativeCreated": 19615.38791656494, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,611" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6121936, + "msecs": 612.1935844421387, + "relativeCreated": 19615.708827972412, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:42,612" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.6124108, + "msecs": 612.4107837677002, + "relativeCreated": 19615.926027297974, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,612" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6126347, + "msecs": 612.6346588134766, + "relativeCreated": 19616.14990234375, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:42,612" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.6128464, + "msecs": 612.8463745117188, + "relativeCreated": 19616.361618041992, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,612" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6131058, + "msecs": 613.1057739257812, + "relativeCreated": 19616.621017456055, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:42,613" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.613324, + "msecs": 613.3239269256592, + "relativeCreated": 19616.839170455933, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,613" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6135342, + "msecs": 613.5342121124268, + "relativeCreated": 19617.0494556427, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:42,613" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.6137438, + "msecs": 613.743782043457, + "relativeCreated": 19617.25902557373, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,613" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6140075, + "msecs": 614.0074729919434, + "relativeCreated": 19617.522716522217, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:42,614" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6142864, + "msecs": 614.2864227294922, + "relativeCreated": 19617.801666259766, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,614" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6145492, + "msecs": 614.5491600036621, + "relativeCreated": 19618.064403533936, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,614" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.614793, + "msecs": 614.793062210083, + "relativeCreated": 19618.308305740356, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,614" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.615031, + "msecs": 615.0310039520264, + "relativeCreated": 19618.5462474823, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,615" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6152644, + "msecs": 615.2644157409668, + "relativeCreated": 19618.77965927124, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,615" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6155083, + "msecs": 615.5083179473877, + "relativeCreated": 19619.02356147766, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,615" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.6551726, + "msecs": 655.17258644104, + "relativeCreated": 19658.687829971313, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", + "asctime": "2023-02-15 07:13:42,655" + } + ], + "time_consumption": 0.21538853645324707 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441622.8713243, + "msecs": 871.3243007659912, + "relativeCreated": 19874.839544296265, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:42,871", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441622.8710492, + "msecs": 871.049165725708, + "relativeCreated": 19874.56440925598, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) state): True ()", + "asctime": "2023-02-15 07:13:42,871" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441622.8712015, + "msecs": 871.2015151977539, + "relativeCreated": 19874.716758728027, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) state): result = True ()", + "asctime": "2023-02-15 07:13:42,871" + } + ], + "time_consumption": 0.0001227855682373047 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441622.8717706, + "msecs": 871.7706203460693, + "relativeCreated": 19875.285863876343, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:42,871", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441622.871523, + "msecs": 871.5229034423828, + "relativeCreated": 19875.038146972656, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) state): True ()", + "asctime": "2023-02-15 07:13:42,871" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441622.871672, + "msecs": 871.6719150543213, + "relativeCreated": 19875.187158584595, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) state): result = True ()", + "asctime": "2023-02-15 07:13:42,871" + } + ], + "time_consumption": 9.870529174804688e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441622.8721411, + "msecs": 872.1411228179932, + "relativeCreated": 19875.656366348267, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:42,872", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441622.8719485, + "msecs": 871.9484806060791, + "relativeCreated": 19875.463724136353, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) state): True ()", + "asctime": "2023-02-15 07:13:42,871" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441622.8720493, + "msecs": 872.0493316650391, + "relativeCreated": 19875.564575195312, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) state): result = True ()", + "asctime": "2023-02-15 07:13:42,872" + } + ], + "time_consumption": 9.179115295410156e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441622.872524, + "msecs": 872.5240230560303, + "relativeCreated": 19876.039266586304, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:42,872", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441622.8723118, + "msecs": 872.3118305206299, + "relativeCreated": 19875.827074050903, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) state): True ()", + "asctime": "2023-02-15 07:13:42,872" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441622.872412, + "msecs": 872.4119663238525, + "relativeCreated": 19875.927209854126, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) state): result = True ()", + "asctime": "2023-02-15 07:13:42,872" + } + ], + "time_consumption": 0.00011205673217773438 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441622.8728945, + "msecs": 872.8945255279541, + "relativeCreated": 19876.409769058228, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:42,872", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441622.8726935, + "msecs": 872.6935386657715, + "relativeCreated": 19876.208782196045, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) state): True ()", + "asctime": "2023-02-15 07:13:42,872" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441622.8727908, + "msecs": 872.7908134460449, + "relativeCreated": 19876.30605697632, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) state): result = True ()", + "asctime": "2023-02-15 07:13:42,872" + } + ], + "time_consumption": 0.00010371208190917969 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441622.8732543, + "msecs": 873.2542991638184, + "relativeCreated": 19876.76954269409, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:42,873", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441622.8730564, + "msecs": 873.0564117431641, + "relativeCreated": 19876.571655273438, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) state): True ()", + "asctime": "2023-02-15 07:13:42,873" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441622.8731663, + "msecs": 873.1663227081299, + "relativeCreated": 19876.681566238403, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) state): result = True ()", + "asctime": "2023-02-15 07:13:42,873" + } + ], + "time_consumption": 8.797645568847656e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing master device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off_sync__", + "created": 1676441623.1745992, + "msecs": 174.59917068481445, + "relativeCreated": 20178.114414215088, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device state to 'False'", + "asctime": "2023-02-15 07:13:43,174", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.8735175, + "msecs": 873.5175132751465, + "relativeCreated": 19877.03275680542, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:42,873" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8748486, + "msecs": 874.8486042022705, + "relativeCreated": 19878.363847732544, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:42,874" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8798292, + "msecs": 879.8291683197021, + "relativeCreated": 19883.344411849976, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:42,879" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.8800275, + "msecs": 880.0275325775146, + "relativeCreated": 19883.542776107788, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,880" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.880215, + "msecs": 880.2149295806885, + "relativeCreated": 19883.730173110962, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:42,880" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.8803775, + "msecs": 880.3775310516357, + "relativeCreated": 19883.89277458191, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,880" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8805807, + "msecs": 880.5806636810303, + "relativeCreated": 19884.095907211304, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:42,880" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.8807714, + "msecs": 880.7713985443115, + "relativeCreated": 19884.286642074585, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,880" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8809624, + "msecs": 880.9623718261719, + "relativeCreated": 19884.477615356445, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:42,880" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.8811417, + "msecs": 881.1416625976562, + "relativeCreated": 19884.65690612793, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,881" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8813698, + "msecs": 881.3698291778564, + "relativeCreated": 19884.88507270813, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:42,881" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.88156, + "msecs": 881.5600872039795, + "relativeCreated": 19885.075330734253, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,881" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8819501, + "msecs": 881.9501399993896, + "relativeCreated": 19885.465383529663, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:42,881" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441622.8821366, + "msecs": 882.1365833282471, + "relativeCreated": 19885.65182685852, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:42,882" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8823605, + "msecs": 882.3604583740234, + "relativeCreated": 19885.875701904297, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:42,882" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_1", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8826025, + "msecs": 882.6024532318115, + "relativeCreated": 19886.117696762085, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,882" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_2", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.882814, + "msecs": 882.8139305114746, + "relativeCreated": 19886.329174041748, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,882" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_3", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8830242, + "msecs": 883.0242156982422, + "relativeCreated": 19886.539459228516, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,883" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_4", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8832254, + "msecs": 883.2254409790039, + "relativeCreated": 19886.740684509277, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,883" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_5", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.883425, + "msecs": 883.4249973297119, + "relativeCreated": 19886.940240859985, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,883" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/livingroom/floorlamp_6", + "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.8836248, + "msecs": 883.624792098999, + "relativeCreated": 19887.140035629272, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:42,883" + }, + { + "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/livingroom/floorlamp/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441622.9255457, + "msecs": 925.5456924438477, + "relativeCreated": 19929.06093597412, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", + "asctime": "2023-02-15 07:13:42,925" + } + ], + "time_consumption": 0.2490534782409668 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441623.1753912, + "msecs": 175.39119720458984, + "relativeCreated": 20178.906440734863, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:43,175", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441623.1750789, + "msecs": 175.0788688659668, + "relativeCreated": 20178.59411239624, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) state): False ()", + "asctime": "2023-02-15 07:13:43,175" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_1) state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441623.175228, + "msecs": 175.22811889648438, + "relativeCreated": 20178.743362426758, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) state): result = False ()", + "asctime": "2023-02-15 07:13:43,175" + } + ], + "time_consumption": 0.00016307830810546875 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441623.1758177, + "msecs": 175.81772804260254, + "relativeCreated": 20179.332971572876, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:43,175", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441623.1755953, + "msecs": 175.59528350830078, + "relativeCreated": 20179.110527038574, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) state): False ()", + "asctime": "2023-02-15 07:13:43,175" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_2) state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441623.1757143, + "msecs": 175.71425437927246, + "relativeCreated": 20179.229497909546, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) state): result = False ()", + "asctime": "2023-02-15 07:13:43,175" + } + ], + "time_consumption": 0.00010347366333007812 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441623.1761916, + "msecs": 176.1915683746338, + "relativeCreated": 20179.706811904907, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:43,176", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441623.1759946, + "msecs": 175.9946346282959, + "relativeCreated": 20179.50987815857, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) state): False ()", + "asctime": "2023-02-15 07:13:43,175" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_3) state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441623.1760964, + "msecs": 176.09643936157227, + "relativeCreated": 20179.611682891846, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) state): result = False ()", + "asctime": "2023-02-15 07:13:43,176" + } + ], + "time_consumption": 9.512901306152344e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441623.1765616, + "msecs": 176.5615940093994, + "relativeCreated": 20180.076837539673, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:43,176", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441623.1763556, + "msecs": 176.35560035705566, + "relativeCreated": 20179.87084388733, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) state): False ()", + "asctime": "2023-02-15 07:13:43,176" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_4) state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441623.176455, + "msecs": 176.45502090454102, + "relativeCreated": 20179.970264434814, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) state): result = False ()", + "asctime": "2023-02-15 07:13:43,176" + } + ], + "time_consumption": 0.00010657310485839844 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441623.1769118, + "msecs": 176.9118309020996, + "relativeCreated": 20180.427074432373, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:43,176", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441623.1767213, + "msecs": 176.72133445739746, + "relativeCreated": 20180.23657798767, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) state): False ()", + "asctime": "2023-02-15 07:13:43,176" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_5) state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441623.1768205, + "msecs": 176.8205165863037, + "relativeCreated": 20180.335760116577, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) state): result = False ()", + "asctime": "2023-02-15 07:13:43,176" + } + ], + "time_consumption": 9.131431579589844e-05 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441623.1772575, + "msecs": 177.25753784179688, + "relativeCreated": 20180.77278137207, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:43,177", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441623.1770709, + "msecs": 177.07085609436035, + "relativeCreated": 20180.586099624634, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) state): False ()", + "asctime": "2023-02-15 07:13:43,177" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/ffe/livingroom/floorlamp_6) state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441623.177168, + "msecs": 177.1678924560547, + "relativeCreated": 20180.683135986328, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) state): result = False ()", + "asctime": "2023-02-15 07:13:43,177" + } + ], + "time_consumption": 8.96453857421875e-05 + } + ], + "time_consumption": 0.9098222255706787, + "time_start": "2023-02-15 07:13:42,267", + "time_finished": "2023-02-15 07:13:43,177" + }, + "Brightness test for device and virtual device: zigbee/ffe/sleep/bed_light_di": { + "name": "__tLogger__", + "msg": "Brightness test for device and virtual device: zigbee/ffe/sleep/bed_light_di", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_brightness", + "created": 1676441623.1777892, + "msecs": 177.78921127319336, + "relativeCreated": 20181.304454803467, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness test for device and virtual device: zigbee/ffe/sleep/bed_light_di", + "asctime": "2023-02-15 07:13:43,177", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 57, + "funcName": "__test_brightness__", + "created": 1676441623.4793813, + "msecs": 479.3813228607178, + "relativeCreated": 20482.89656639099, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:13:43,479", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441623.178233, + "msecs": 178.23290824890137, + "relativeCreated": 20181.748151779175, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2023-02-15 07:13:43,178" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441623.179532, + "msecs": 179.53205108642578, + "relativeCreated": 20183.0472946167, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2023-02-15 07:13:43,179" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441623.1843119, + "msecs": 184.3118667602539, + "relativeCreated": 20187.827110290527, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", + "asctime": "2023-02-15 07:13:43,184" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441623.1851263, + "msecs": 185.12630462646484, + "relativeCreated": 20188.64154815674, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:43,185" + } + ], + "time_consumption": 0.29425501823425293 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441623.4801233, + "msecs": 480.12328147888184, + "relativeCreated": 20483.638525009155, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:43,480", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441623.4798427, + "msecs": 479.8426628112793, + "relativeCreated": 20483.357906341553, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:13:43,479" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441623.479997, + "msecs": 479.996919631958, + "relativeCreated": 20483.51216316223, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:43,479" + } + ], + "time_consumption": 0.00012636184692382812 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441623.781721, + "msecs": 781.7211151123047, + "relativeCreated": 20785.236358642578, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:13:43,781", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 165.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441623.4805212, + "msecs": 480.52120208740234, + "relativeCreated": 20484.036445617676, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 165.0}", + "asctime": "2023-02-15 07:13:43,480" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 165.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441623.4818532, + "msecs": 481.8532466888428, + "relativeCreated": 20485.368490219116, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 165.0}'", + "asctime": "2023-02-15 07:13:43,481" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441623.4842484, + "msecs": 484.24839973449707, + "relativeCreated": 20487.76364326477, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'65'", + "asctime": "2023-02-15 07:13:43,484" + } + ], + "time_consumption": 0.2974727153778076 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441623.782481, + "msecs": 782.4809551239014, + "relativeCreated": 20785.996198654175, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:43,782", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441623.7821753, + "msecs": 782.1753025054932, + "relativeCreated": 20785.690546035767, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:13:43,782" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441623.782322, + "msecs": 782.3219299316406, + "relativeCreated": 20785.837173461914, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:43,782" + } + ], + "time_consumption": 0.0001590251922607422 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441623.782894, + "msecs": 782.8938961029053, + "relativeCreated": 20786.40913963318, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:43,782", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441623.7826843, + "msecs": 782.684326171875, + "relativeCreated": 20786.19956970215, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:13:43,782" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441623.782794, + "msecs": 782.7939987182617, + "relativeCreated": 20786.309242248535, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:43,782" + } + ], + "time_consumption": 9.989738464355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441624.0844314, + "msecs": 84.43140983581543, + "relativeCreated": 21087.94665336609, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:13:44,084", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441623.7832644, + "msecs": 783.2643985748291, + "relativeCreated": 20786.779642105103, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 50", + "asctime": "2023-02-15 07:13:43,783" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441623.7866974, + "msecs": 786.6973876953125, + "relativeCreated": 20790.212631225586, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:43,786" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441623.787349, + "msecs": 787.3489856719971, + "relativeCreated": 20790.86422920227, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2023-02-15 07:13:43,787" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441623.7885187, + "msecs": 788.5186672210693, + "relativeCreated": 20792.033910751343, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2023-02-15 07:13:43,788" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441623.8312573, + "msecs": 831.2573432922363, + "relativeCreated": 20834.77258682251, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:43,831" + } + ], + "time_consumption": 0.2531740665435791 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441624.0851586, + "msecs": 85.1585865020752, + "relativeCreated": 21088.67383003235, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:44,085", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441624.0848885, + "msecs": 84.88845825195312, + "relativeCreated": 21088.403701782227, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:13:44,084" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441624.0850377, + "msecs": 85.0377082824707, + "relativeCreated": 21088.552951812744, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:44,085" + } + ], + "time_consumption": 0.00012087821960449219 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441624.0855598, + "msecs": 85.55984497070312, + "relativeCreated": 21089.075088500977, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:44,085", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441624.0853522, + "msecs": 85.35218238830566, + "relativeCreated": 21088.86742591858, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:13:44,085" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441624.085463, + "msecs": 85.46304702758789, + "relativeCreated": 21088.97829055786, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:44,085" + } + ], + "time_consumption": 9.679794311523438e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441624.38647, + "msecs": 386.47007942199707, + "relativeCreated": 21389.98532295227, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:13:44,386", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 165.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441624.0859253, + "msecs": 85.92534065246582, + "relativeCreated": 21089.44058418274, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 165.0}", + "asctime": "2023-02-15 07:13:44,085" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 165.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441624.087282, + "msecs": 87.28194236755371, + "relativeCreated": 21090.797185897827, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 165.0}'", + "asctime": "2023-02-15 07:13:44,087" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441624.0896382, + "msecs": 89.63823318481445, + "relativeCreated": 21093.153476715088, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'65'", + "asctime": "2023-02-15 07:13:44,089" + } + ], + "time_consumption": 0.2968318462371826 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441624.3866992, + "msecs": 386.6991996765137, + "relativeCreated": 21390.214443206787, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:44,386", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441624.3866322, + "msecs": 386.63220405578613, + "relativeCreated": 21390.14744758606, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:13:44,386" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441624.3866687, + "msecs": 386.6686820983887, + "relativeCreated": 21390.183925628662, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:44,386" + } + ], + "time_consumption": 3.0517578125e-05 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441624.386792, + "msecs": 386.7919445037842, + "relativeCreated": 21390.307188034058, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:44,386", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441624.3867445, + "msecs": 386.74449920654297, + "relativeCreated": 21390.259742736816, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:13:44,386" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441624.386769, + "msecs": 386.76905632019043, + "relativeCreated": 21390.284299850464, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:44,386" + } + ], + "time_consumption": 2.288818359375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441624.6877604, + "msecs": 687.7603530883789, + "relativeCreated": 21691.275596618652, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:13:44,687", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441624.3868818, + "msecs": 386.88182830810547, + "relativeCreated": 21390.39707183838, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 50", + "asctime": "2023-02-15 07:13:44,386" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441624.3878756, + "msecs": 387.8755569458008, + "relativeCreated": 21391.390800476074, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:44,387" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441624.388043, + "msecs": 388.0429267883301, + "relativeCreated": 21391.558170318604, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2023-02-15 07:13:44,388" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441624.3883488, + "msecs": 388.3488178253174, + "relativeCreated": 21391.86406135559, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2023-02-15 07:13:44,388" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441624.432078, + "msecs": 432.07788467407227, + "relativeCreated": 21435.593128204346, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:44,432" + } + ], + "time_consumption": 0.25568246841430664 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441624.6884928, + "msecs": 688.4927749633789, + "relativeCreated": 21692.008018493652, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:44,688", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441624.6882198, + "msecs": 688.2197856903076, + "relativeCreated": 21691.73502922058, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:13:44,688" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441624.6883702, + "msecs": 688.3702278137207, + "relativeCreated": 21691.885471343994, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:44,688" + } + ], + "time_consumption": 0.00012254714965820312 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "__test_brightness__", + "created": 1676441624.9901052, + "msecs": 990.105152130127, + "relativeCreated": 21993.6203956604, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:13:44,990", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"off\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441624.6889334, + "msecs": 688.9333724975586, + "relativeCreated": 21692.448616027832, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0}", + "asctime": "2023-02-15 07:13:44,688" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"off\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441624.6902416, + "msecs": 690.2415752410889, + "relativeCreated": 21693.756818771362, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0}'", + "asctime": "2023-02-15 07:13:44,690" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441624.6945827, + "msecs": 694.5827007293701, + "relativeCreated": 21698.097944259644, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", + "asctime": "2023-02-15 07:13:44,694" + } + ], + "time_consumption": 0.29552245140075684 + } + ], + "time_consumption": 1.8123159408569336, + "time_start": "2023-02-15 07:13:43,177", + "time_finished": "2023-02-15 07:13:44,990" + }, + "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_di": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_di", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441624.9909148, + "msecs": 990.9148216247559, + "relativeCreated": 21994.43006515503, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_di", + "asctime": "2023-02-15 07:13:44,990", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441624.9914505, + "msecs": 991.4505481719971, + "relativeCreated": 21994.96579170227, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:44,991", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441624.9911897, + "msecs": 991.18971824646, + "relativeCreated": 21994.704961776733, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:44,991" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441624.9913344, + "msecs": 991.3344383239746, + "relativeCreated": 21994.849681854248, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:44,991" + } + ], + "time_consumption": 0.00011610984802246094 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441625.2928295, + "msecs": 292.8295135498047, + "relativeCreated": 22296.344757080078, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:45,292", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441624.9918299, + "msecs": 991.8298721313477, + "relativeCreated": 21995.34511566162, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2023-02-15 07:13:44,991" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441624.9931097, + "msecs": 993.1097030639648, + "relativeCreated": 21996.62494659424, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2023-02-15 07:13:44,993" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441624.9973671, + "msecs": 997.3671436309814, + "relativeCreated": 22000.882387161255, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", + "asctime": "2023-02-15 07:13:44,997" + } + ], + "time_consumption": 0.29546236991882324 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441625.293545, + "msecs": 293.5450077056885, + "relativeCreated": 22297.060251235962, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:45,293", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441625.293279, + "msecs": 293.27893257141113, + "relativeCreated": 22296.794176101685, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:45,293" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441625.2934263, + "msecs": 293.4262752532959, + "relativeCreated": 22296.94151878357, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:45,293" + } + ], + "time_consumption": 0.00011873245239257812 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441625.2939417, + "msecs": 293.9417362213135, + "relativeCreated": 22297.456979751587, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:45,293", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441625.2937357, + "msecs": 293.7357425689697, + "relativeCreated": 22297.250986099243, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:45,293" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441625.2938445, + "msecs": 293.84446144104004, + "relativeCreated": 22297.359704971313, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:45,293" + } + ], + "time_consumption": 9.72747802734375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441625.5954638, + "msecs": 595.463752746582, + "relativeCreated": 22598.978996276855, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:45,595", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441625.294308, + "msecs": 294.3079471588135, + "relativeCreated": 22297.823190689087, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false", + "asctime": "2023-02-15 07:13:45,294" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441625.2976153, + "msecs": 297.61528968811035, + "relativeCreated": 22301.130533218384, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:45,297" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"off\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441625.2983234, + "msecs": 298.323392868042, + "relativeCreated": 22301.838636398315, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0}", + "asctime": "2023-02-15 07:13:45,298" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"off\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441625.2995305, + "msecs": 299.5305061340332, + "relativeCreated": 22303.045749664307, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0}'", + "asctime": "2023-02-15 07:13:45,299" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441625.3880415, + "msecs": 388.04149627685547, + "relativeCreated": 22391.55673980713, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", + "asctime": "2023-02-15 07:13:45,388" + } + ], + "time_consumption": 0.20742225646972656 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441625.5960963, + "msecs": 596.0962772369385, + "relativeCreated": 22599.611520767212, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:45,596", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441625.5958633, + "msecs": 595.8633422851562, + "relativeCreated": 22599.37858581543, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:45,595" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441625.5959923, + "msecs": 595.9923267364502, + "relativeCreated": 22599.507570266724, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:45,595" + } + ], + "time_consumption": 0.00010395050048828125 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441625.5964427, + "msecs": 596.442699432373, + "relativeCreated": 22599.957942962646, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:45,596", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441625.596262, + "msecs": 596.2619781494141, + "relativeCreated": 22599.777221679688, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:45,596" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441625.5963566, + "msecs": 596.3566303253174, + "relativeCreated": 22599.87187385559, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:45,596" + } + ], + "time_consumption": 8.606910705566406e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441625.8976412, + "msecs": 897.6411819458008, + "relativeCreated": 22901.156425476074, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:45,897", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"on\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441625.5967674, + "msecs": 596.7674255371094, + "relativeCreated": 22600.282669067383, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0}", + "asctime": "2023-02-15 07:13:45,596" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"on\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441625.5978663, + "msecs": 597.8662967681885, + "relativeCreated": 22601.381540298462, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0}'", + "asctime": "2023-02-15 07:13:45,597" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441625.6035311, + "msecs": 603.5311222076416, + "relativeCreated": 22607.046365737915, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", + "asctime": "2023-02-15 07:13:45,603" + } + ], + "time_consumption": 0.2941100597381592 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441625.897905, + "msecs": 897.9051113128662, + "relativeCreated": 22901.42035484314, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:45,897", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441625.8978188, + "msecs": 897.8188037872314, + "relativeCreated": 22901.334047317505, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:45,897" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441625.897857, + "msecs": 897.8569507598877, + "relativeCreated": 22901.37219429016, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:45,897" + } + ], + "time_consumption": 4.8160552978515625e-05 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441625.898004, + "msecs": 898.0040550231934, + "relativeCreated": 22901.519298553467, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:45,898", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441625.8979542, + "msecs": 897.9542255401611, + "relativeCreated": 22901.469469070435, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:45,897" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441625.8979805, + "msecs": 897.9804515838623, + "relativeCreated": 22901.495695114136, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:45,897" + } + ], + "time_consumption": 2.3603439331054688e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441626.1989186, + "msecs": 198.91858100891113, + "relativeCreated": 23202.433824539185, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:46,198", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441625.8980849, + "msecs": 898.0848789215088, + "relativeCreated": 22901.600122451782, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false", + "asctime": "2023-02-15 07:13:45,898" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441625.899218, + "msecs": 899.2180824279785, + "relativeCreated": 22902.733325958252, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:45,899" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "{\"state\": \"off\", \"brightness\": 127.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441625.8994274, + "msecs": 899.4274139404297, + "relativeCreated": 22902.942657470703, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0}", + "asctime": "2023-02-15 07:13:45,899" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_di", + "b'{\"state\": \"off\", \"brightness\": 127.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441625.8997383, + "msecs": 899.7383117675781, + "relativeCreated": 22903.25355529785, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0}'", + "asctime": "2023-02-15 07:13:45,899" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_di/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441625.9874718, + "msecs": 987.4718189239502, + "relativeCreated": 22990.987062454224, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", + "asctime": "2023-02-15 07:13:45,987" + } + ], + "time_consumption": 0.21144676208496094 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441626.199642, + "msecs": 199.64194297790527, + "relativeCreated": 23203.15718650818, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:46,199", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441626.1993697, + "msecs": 199.3696689605713, + "relativeCreated": 23202.884912490845, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:46,199" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441626.199519, + "msecs": 199.51891899108887, + "relativeCreated": 23203.034162521362, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:46,199" + } + ], + "time_consumption": 0.00012302398681640625 + } + ], + "time_consumption": 1.2087271213531494, + "time_start": "2023-02-15 07:13:44,990", + "time_finished": "2023-02-15 07:13:46,199" + }, + "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_ma": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_ma", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441626.2001836, + "msecs": 200.18362998962402, + "relativeCreated": 23203.698873519897, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_ma", + "asctime": "2023-02-15 07:13:46,200", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441626.200666, + "msecs": 200.66595077514648, + "relativeCreated": 23204.18119430542, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:46,200", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441626.200402, + "msecs": 200.40202140808105, + "relativeCreated": 23203.917264938354, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:46,200" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441626.2005215, + "msecs": 200.52146911621094, + "relativeCreated": 23204.036712646484, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:46,200" + } + ], + "time_consumption": 0.00014448165893554688 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441626.5020595, + "msecs": 502.0594596862793, + "relativeCreated": 23505.574703216553, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:46,502", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441626.2009861, + "msecs": 200.98614692687988, + "relativeCreated": 23204.501390457153, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_ma and payload {\"state\": \"on\"}", + "asctime": "2023-02-15 07:13:46,200" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441626.2022388, + "msecs": 202.2387981414795, + "relativeCreated": 23205.754041671753, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:46,202" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_ma/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441626.204615, + "msecs": 204.61511611938477, + "relativeCreated": 23208.13035964966, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true'", + "asctime": "2023-02-15 07:13:46,204" + } + ], + "time_consumption": 0.29744434356689453 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441626.5027237, + "msecs": 502.72369384765625, + "relativeCreated": 23506.23893737793, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:46,502", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441626.5024884, + "msecs": 502.488374710083, + "relativeCreated": 23506.003618240356, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:46,502" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441626.5026217, + "msecs": 502.6216506958008, + "relativeCreated": 23506.136894226074, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:46,502" + } + ], + "time_consumption": 0.00010204315185546875 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441626.503065, + "msecs": 503.0651092529297, + "relativeCreated": 23506.580352783203, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:46,503", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441626.502891, + "msecs": 502.89106369018555, + "relativeCreated": 23506.40630722046, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:46,502" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441626.5029829, + "msecs": 502.98285484313965, + "relativeCreated": 23506.498098373413, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:46,502" + } + ], + "time_consumption": 8.225440979003906e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441626.8044631, + "msecs": 804.4631481170654, + "relativeCreated": 23807.97839164734, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:46,804", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_ma/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441626.5033894, + "msecs": 503.3893585205078, + "relativeCreated": 23506.90460205078, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false", + "asctime": "2023-02-15 07:13:46,503" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441626.5062857, + "msecs": 506.2856674194336, + "relativeCreated": 23509.800910949707, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:46,506" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441626.5068192, + "msecs": 506.8192481994629, + "relativeCreated": 23510.334491729736, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_ma and payload {\"state\": \"off\"}", + "asctime": "2023-02-15 07:13:46,506" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441626.5077999, + "msecs": 507.7998638153076, + "relativeCreated": 23511.31510734558, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:46,507" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_ma/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441626.5511618, + "msecs": 551.1617660522461, + "relativeCreated": 23554.67700958252, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", + "asctime": "2023-02-15 07:13:46,551" + } + ], + "time_consumption": 0.25330138206481934 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441626.8051777, + "msecs": 805.1776885986328, + "relativeCreated": 23808.692932128906, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:46,805", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441626.8049145, + "msecs": 804.9144744873047, + "relativeCreated": 23808.429718017578, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:46,804" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441626.8050594, + "msecs": 805.0594329833984, + "relativeCreated": 23808.574676513672, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:46,805" + } + ], + "time_consumption": 0.000118255615234375 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441626.8055744, + "msecs": 805.5744171142578, + "relativeCreated": 23809.08966064453, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:46,805", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441626.8053687, + "msecs": 805.3686618804932, + "relativeCreated": 23808.883905410767, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:46,805" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441626.8054767, + "msecs": 805.4766654968262, + "relativeCreated": 23808.9919090271, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:46,805" + } + ], + "time_consumption": 9.775161743164062e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441627.1070266, + "msecs": 107.02657699584961, + "relativeCreated": 24110.541820526123, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:47,107", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma", + "{\"state\": \"on\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441626.8058755, + "msecs": 805.8755397796631, + "relativeCreated": 23809.390783309937, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_ma and payload {\"state\": \"on\"}", + "asctime": "2023-02-15 07:13:46,805" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma", + "b'{\"state\": \"on\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441626.8072042, + "msecs": 807.2042465209961, + "relativeCreated": 23810.71949005127, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma and payload b'{\"state\": \"on\"}'", + "asctime": "2023-02-15 07:13:46,807" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_ma/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441626.8095276, + "msecs": 809.5276355743408, + "relativeCreated": 23813.042879104614, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true'", + "asctime": "2023-02-15 07:13:46,809" + } + ], + "time_consumption": 0.2974989414215088 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441627.1077893, + "msecs": 107.78927803039551, + "relativeCreated": 24111.30452156067, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:47,107", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441627.107479, + "msecs": 107.47909545898438, + "relativeCreated": 24110.994338989258, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:47,107" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441627.107671, + "msecs": 107.67102241516113, + "relativeCreated": 24111.186265945435, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:47,107" + } + ], + "time_consumption": 0.000118255615234375 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441627.1081886, + "msecs": 108.18862915039062, + "relativeCreated": 24111.703872680664, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:47,108", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441627.1079805, + "msecs": 107.98048973083496, + "relativeCreated": 24111.49573326111, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:47,107" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441627.10809, + "msecs": 108.08992385864258, + "relativeCreated": 24111.605167388916, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:47,108" + } + ], + "time_consumption": 9.870529174804688e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441627.4096289, + "msecs": 409.62886810302734, + "relativeCreated": 24413.1441116333, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:47,409", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_ma/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441627.1084642, + "msecs": 108.46424102783203, + "relativeCreated": 24111.979484558105, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false", + "asctime": "2023-02-15 07:13:47,108" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma/set", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.1117132, + "msecs": 111.71317100524902, + "relativeCreated": 24115.228414535522, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma/set and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:47,111" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma", + "{\"state\": \"off\"}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441627.112325, + "msecs": 112.32495307922363, + "relativeCreated": 24115.840196609497, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/bed_light_ma and payload {\"state\": \"off\"}", + "asctime": "2023-02-15 07:13:47,112" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/bed_light_ma", + "b'{\"state\": \"off\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.1134484, + "msecs": 113.4483814239502, + "relativeCreated": 24116.963624954224, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma and payload b'{\"state\": \"off\"}'", + "asctime": "2023-02-15 07:13:47,113" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/bed_light_ma/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.1578903, + "msecs": 157.89031982421875, + "relativeCreated": 24161.405563354492, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", + "asctime": "2023-02-15 07:13:47,157" + } + ], + "time_consumption": 0.2517385482788086 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441627.4104607, + "msecs": 410.4607105255127, + "relativeCreated": 24413.975954055786, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:47,410", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441627.4101083, + "msecs": 410.1083278656006, + "relativeCreated": 24413.623571395874, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:47,410" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441627.4103007, + "msecs": 410.30073165893555, + "relativeCreated": 24413.81597518921, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:47,410" + } + ], + "time_consumption": 0.00015997886657714844 + } + ], + "time_consumption": 1.2102770805358887, + "time_start": "2023-02-15 07:13:46,200", + "time_finished": "2023-02-15 07:13:47,410" + }, + "Away mode test: zigbee/ffe/sleep/heating_valve": { + "name": "__tLogger__", + "msg": "Away mode test: zigbee/ffe/sleep/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 101, + "funcName": "test_away_mode", + "created": 1676441627.411016, + "msecs": 411.01598739624023, + "relativeCreated": 24414.531230926514, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode test: zigbee/ffe/sleep/heating_valve", + "asctime": "2023-02-15 07:13:47,411", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 106, + "funcName": "__test_away_mode__", + "created": 1676441627.7125595, + "msecs": 712.5594615936279, + "relativeCreated": 24716.0747051239, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Default setpoint)", + "asctime": "2023-02-15 07:13:47,712", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441627.4113913, + "msecs": 411.3912582397461, + "relativeCreated": 24414.90650177002, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:13:47,411" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/user_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.417877, + "msecs": 417.8769588470459, + "relativeCreated": 24421.39220237732, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:47,417" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 21.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.418159, + "msecs": 418.15900802612305, + "relativeCreated": 24421.674251556396, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", + "asctime": "2023-02-15 07:13:47,418" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441627.4183245, + "msecs": 418.32447052001953, + "relativeCreated": 24421.839714050293, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:47,418" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.418534, + "msecs": 418.5340404510498, + "relativeCreated": 24422.049283981323, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:47,418" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.4188962, + "msecs": 418.8961982727051, + "relativeCreated": 24422.41144180298, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:47,418" + } + ], + "time_consumption": 0.29366326332092285 + }, + { + "name": "__tLogger__", + "msg": "Away mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441627.713282, + "msecs": 713.2821083068848, + "relativeCreated": 24716.79735183716, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:47,713", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Away mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441627.7130044, + "msecs": 713.0043506622314, + "relativeCreated": 24716.519594192505, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Away mode): False ()", + "asctime": "2023-02-15 07:13:47,713" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Away mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441627.7131586, + "msecs": 713.1586074829102, + "relativeCreated": 24716.673851013184, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Away mode): result = False ()", + "asctime": "2023-02-15 07:13:47,713" + } + ], + "time_consumption": 0.00012350082397460938 + }, + { + "name": "__tLogger__", + "msg": "Activating away mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 113, + "funcName": "__test_away_mode__", + "created": 1676441628.0148494, + "msecs": 14.849424362182617, + "relativeCreated": 25018.364667892456, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Activating away mode", + "asctime": "2023-02-15 07:13:48,014", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/away_mode/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441627.7136495, + "msecs": 713.6495113372803, + "relativeCreated": 24717.164754867554, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/away_mode/set and payload true", + "asctime": "2023-02-15 07:13:47,713" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 16.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.7253494, + "msecs": 725.3494262695312, + "relativeCreated": 24728.864669799805, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 16.5}'", + "asctime": "2023-02-15 07:13:47,725" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441627.7259538, + "msecs": 725.9538173675537, + "relativeCreated": 24729.469060897827, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:47,725" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'16.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.726585, + "msecs": 726.5849113464355, + "relativeCreated": 24730.10015487671, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'16.5'", + "asctime": "2023-02-15 07:13:47,726" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/away_mode", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.7273767, + "msecs": 727.3766994476318, + "relativeCreated": 24730.891942977905, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'true'", + "asctime": "2023-02-15 07:13:47,727" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441627.7280324, + "msecs": 728.0323505401611, + "relativeCreated": 24731.547594070435, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:47,728" + } + ], + "time_consumption": 0.2868170738220215 + }, + { + "name": "__tLogger__", + "msg": "Away mode is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441628.0156083, + "msecs": 15.60831069946289, + "relativeCreated": 25019.123554229736, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:48,015", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Away mode", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441628.0152838, + "msecs": 15.283823013305664, + "relativeCreated": 25018.79906654358, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Away mode): True ()", + "asctime": "2023-02-15 07:13:48,015" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Away mode", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441628.0154378, + "msecs": 15.437841415405273, + "relativeCreated": 25018.95308494568, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Away mode): result = True ()", + "asctime": "2023-02-15 07:13:48,015" + } + ], + "time_consumption": 0.0001704692840576172 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "16.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441628.0160599, + "msecs": 16.05987548828125, + "relativeCreated": 25019.575119018555, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 16.5 and Type is ).", + "asctime": "2023-02-15 07:13:48,016", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441628.015821, + "msecs": 15.820980072021484, + "relativeCreated": 25019.336223602295, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 16.5 ()", + "asctime": "2023-02-15 07:13:48,015" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441628.0159528, + "msecs": 15.952825546264648, + "relativeCreated": 25019.468069076538, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 16.5 ()", + "asctime": "2023-02-15 07:13:48,015" + } + ], + "time_consumption": 0.00010704994201660156 + }, + { + "name": "__tLogger__", + "msg": "Deactivating away mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 119, + "funcName": "__test_away_mode__", + "created": 1676441628.3174965, + "msecs": 317.49653816223145, + "relativeCreated": 25321.011781692505, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Deactivating away mode", + "asctime": "2023-02-15 07:13:48,317", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/away_mode/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441628.0163429, + "msecs": 16.342878341674805, + "relativeCreated": 25019.85812187195, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/away_mode/set and payload false", + "asctime": "2023-02-15 07:13:48,016" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 21.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.029219, + "msecs": 29.21891212463379, + "relativeCreated": 25032.734155654907, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", + "asctime": "2023-02-15 07:13:48,029" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441628.0299294, + "msecs": 29.929399490356445, + "relativeCreated": 25033.44464302063, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:48,029" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.030685, + "msecs": 30.684947967529297, + "relativeCreated": 25034.200191497803, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:48,030" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/away_mode", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.0316026, + "msecs": 31.60262107849121, + "relativeCreated": 25035.117864608765, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'false'", + "asctime": "2023-02-15 07:13:48,031" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.0323286, + "msecs": 32.32860565185547, + "relativeCreated": 25035.84384918213, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:48,032" + } + ], + "time_consumption": 0.285167932510376 + }, + { + "name": "__tLogger__", + "msg": "Away mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441628.3182278, + "msecs": 318.22776794433594, + "relativeCreated": 25321.74301147461, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:48,318", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Away mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441628.3179564, + "msecs": 317.95644760131836, + "relativeCreated": 25321.47169113159, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Away mode): False ()", + "asctime": "2023-02-15 07:13:48,317" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Away mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441628.3181093, + "msecs": 318.10927391052246, + "relativeCreated": 25321.624517440796, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Away mode): result = False ()", + "asctime": "2023-02-15 07:13:48,318" + } + ], + "time_consumption": 0.00011849403381347656 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "21.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441628.3187437, + "msecs": 318.7437057495117, + "relativeCreated": 25322.258949279785, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 21.5 and Type is ).", + "asctime": "2023-02-15 07:13:48,318", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441628.3185194, + "msecs": 318.51935386657715, + "relativeCreated": 25322.03459739685, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 21.5 ()", + "asctime": "2023-02-15 07:13:48,318" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441628.3186386, + "msecs": 318.63856315612793, + "relativeCreated": 25322.1538066864, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 21.5 ()", + "asctime": "2023-02-15 07:13:48,318" + } + ], + "time_consumption": 0.00010514259338378906 + } + ], + "time_consumption": 0.9077277183532715, + "time_start": "2023-02-15 07:13:47,411", + "time_finished": "2023-02-15 07:13:48,318" + }, + "Boost mode test: zigbee/ffe/sleep/heating_valve": { + "name": "__tLogger__", + "msg": "Boost mode test: zigbee/ffe/sleep/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 128, + "funcName": "test_boost_mode", + "created": 1676441628.3192122, + "msecs": 319.2121982574463, + "relativeCreated": 25322.72744178772, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost mode test: zigbee/ffe/sleep/heating_valve", + "asctime": "2023-02-15 07:13:48,319", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 133, + "funcName": "__test_boost_mode__", + "created": 1676441628.6205027, + "msecs": 620.5027103424072, + "relativeCreated": 25624.01795387268, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Default setpoint)", + "asctime": "2023-02-15 07:13:48,620", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441628.3195298, + "msecs": 319.52977180480957, + "relativeCreated": 25323.045015335083, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:13:48,319" + } + ], + "time_consumption": 0.30097293853759766 + }, + { + "name": "__tLogger__", + "msg": "Boost timer is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441628.621135, + "msecs": 621.1349964141846, + "relativeCreated": 25624.650239944458, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost timer is correct (Content 0 and Type is ).", + "asctime": "2023-02-15 07:13:48,621", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Boost timer", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441628.6209047, + "msecs": 620.9046840667725, + "relativeCreated": 25624.419927597046, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Boost timer): 0 ()", + "asctime": "2023-02-15 07:13:48,620" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Boost timer", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441628.6210327, + "msecs": 621.03271484375, + "relativeCreated": 25624.547958374023, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Boost timer): result = 0 ()", + "asctime": "2023-02-15 07:13:48,621" + } + ], + "time_consumption": 0.00010228157043457031 + }, + { + "name": "__tLogger__", + "msg": "Activating boost mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 140, + "funcName": "__test_boost_mode__", + "created": 1676441628.9225624, + "msecs": 922.5623607635498, + "relativeCreated": 25926.077604293823, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Activating boost mode", + "asctime": "2023-02-15 07:13:48,922", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.start_boost.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/start_boost/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441628.6214647, + "msecs": 621.464729309082, + "relativeCreated": 25624.979972839355, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/start_boost/set and payload true", + "asctime": "2023-02-15 07:13:48,621" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.boost_timer", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/boost_timer", + "b'900'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.6325345, + "msecs": 632.5345039367676, + "relativeCreated": 25636.04974746704, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/boost_timer and payload b'900'", + "asctime": "2023-02-15 07:13:48,632" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.6333342, + "msecs": 633.3341598510742, + "relativeCreated": 25636.849403381348, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2023-02-15 07:13:48,633" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441628.633831, + "msecs": 633.8310241699219, + "relativeCreated": 25637.346267700195, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:48,633" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.6344433, + "msecs": 634.4432830810547, + "relativeCreated": 25637.958526611328, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2023-02-15 07:13:48,634" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.6354532, + "msecs": 635.4532241821289, + "relativeCreated": 25638.968467712402, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:48,635" + } + ], + "time_consumption": 0.2871091365814209 + }, + { + "name": "__tLogger__", + "msg": "Boost timer is greater expectation (Content %s and Type is %s).", + "args": [ + "900", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 230, + "funcName": "greater_chk", + "created": 1676441628.9232783, + "msecs": 923.2783317565918, + "relativeCreated": 25926.793575286865, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost timer is greater expectation (Content 900 and Type is ).", + "asctime": "2023-02-15 07:13:48,923", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Boost timer", + "900", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441628.923001, + "msecs": 923.0010509490967, + "relativeCreated": 25926.51629447937, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Boost timer): 900 ()", + "asctime": "2023-02-15 07:13:48,923" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Boost timer", + ">", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441628.9231546, + "msecs": 923.1545925140381, + "relativeCreated": 25926.66983604431, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Boost timer): result > 0 ()", + "asctime": "2023-02-15 07:13:48,923" + } + ], + "time_consumption": 0.00012373924255371094 + }, + { + "name": "__tLogger__", + "msg": "Setting postconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 145, + "funcName": "__test_boost_mode__", + "created": 1676441629.2247276, + "msecs": 224.72763061523438, + "relativeCreated": 26228.242874145508, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting postconditions (Default setpoint)", + "asctime": "2023-02-15 07:13:49,224", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/set_default_temperature/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441628.9235857, + "msecs": 923.5856533050537, + "relativeCreated": 25927.100896835327, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload true", + "asctime": "2023-02-15 07:13:48,923" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.boost_timer", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/boost_timer", + "b'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.936018, + "msecs": 936.0179901123047, + "relativeCreated": 25939.533233642578, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/boost_timer and payload b'0'", + "asctime": "2023-02-15 07:13:48,936" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 21.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.9368942, + "msecs": 936.8941783905029, + "relativeCreated": 25940.409421920776, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", + "asctime": "2023-02-15 07:13:48,936" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441628.937424, + "msecs": 937.4239444732666, + "relativeCreated": 25940.93918800354, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:48,937" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.938124, + "msecs": 938.1239414215088, + "relativeCreated": 25941.639184951782, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:48,938" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441628.9392676, + "msecs": 939.267635345459, + "relativeCreated": 25942.782878875732, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:48,939" + } + ], + "time_consumption": 0.2854599952697754 + }, + { + "name": "__tLogger__", + "msg": "Boost timer is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441629.2254336, + "msecs": 225.4335880279541, + "relativeCreated": 26228.948831558228, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost timer is correct (Content 0 and Type is ).", + "asctime": "2023-02-15 07:13:49,225", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Boost timer", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441629.2251613, + "msecs": 225.16131401062012, + "relativeCreated": 26228.676557540894, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Boost timer): 0 ()", + "asctime": "2023-02-15 07:13:49,225" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Boost timer", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441629.225313, + "msecs": 225.3129482269287, + "relativeCreated": 26228.828191757202, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Boost timer): result = 0 ()", + "asctime": "2023-02-15 07:13:49,225" + } + ], + "time_consumption": 0.00012063980102539062 + } + ], + "time_consumption": 0.9062213897705078, + "time_start": "2023-02-15 07:13:48,319", + "time_finished": "2023-02-15 07:13:49,225" + }, + "Default temperature test for device and virtual device: zigbee/ffe/sleep/heating_valve": { + "name": "__tLogger__", + "msg": "Default temperature test for device and virtual device: zigbee/ffe/sleep/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_default_temperature", + "created": 1676441629.2259552, + "msecs": 225.95524787902832, + "relativeCreated": 26229.4704914093, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Default temperature test for device and virtual device: zigbee/ffe/sleep/heating_valve", + "asctime": "2023-02-15 07:13:49,225", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Valve setpoint to %.1f)", + "args": [ + 16.5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 60, + "funcName": "__test_default_temperature__", + "created": 1676441629.5273583, + "msecs": 527.3582935333252, + "relativeCreated": 26530.8735370636, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Valve setpoint to 16.5)", + "asctime": "2023-02-15 07:13:49,527", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441629.2264535, + "msecs": 226.4535427093506, + "relativeCreated": 26229.968786239624, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:49,226" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441629.2278328, + "msecs": 227.83279418945312, + "relativeCreated": 26231.348037719727, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:49,227" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 16.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441629.2324576, + "msecs": 232.45763778686523, + "relativeCreated": 26235.97288131714, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 16.5}'", + "asctime": "2023-02-15 07:13:49,232" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'16.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441629.232689, + "msecs": 232.68890380859375, + "relativeCreated": 26236.204147338867, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'16.5'", + "asctime": "2023-02-15 07:13:49,232" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/user_temperature_setpoint", + "b'16.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441629.2329073, + "msecs": 232.90729522705078, + "relativeCreated": 26236.422538757324, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'16.5'", + "asctime": "2023-02-15 07:13:49,232" + } + ], + "time_consumption": 0.2944509983062744 + }, + { + "name": "__tLogger__", + "msg": "Valve temperature setpoint (is not default temperature) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441629.5281, + "msecs": 528.1000137329102, + "relativeCreated": 26531.615257263184, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve temperature setpoint (is not default temperature) is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:49,528", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve temperature setpoint (is not default temperature)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441629.5278256, + "msecs": 527.8255939483643, + "relativeCreated": 26531.340837478638, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve temperature setpoint (is not default temperature)): True ()", + "asctime": "2023-02-15 07:13:49,527" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve temperature setpoint (is not default temperature)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441629.5279574, + "msecs": 527.9574394226074, + "relativeCreated": 26531.47268295288, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve temperature setpoint (is not default temperature)): result = True ()", + "asctime": "2023-02-15 07:13:49,527" + } + ], + "time_consumption": 0.00014257431030273438 + }, + { + "name": "__tLogger__", + "msg": "Triggering set to default temperature (%.1f)", + "args": [ + 21.5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 66, + "funcName": "__test_default_temperature__", + "created": 1676441629.8293147, + "msecs": 829.3147087097168, + "relativeCreated": 26832.82995223999, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Triggering set to default temperature (21.5)", + "asctime": "2023-02-15 07:13:49,829", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441629.5283625, + "msecs": 528.362512588501, + "relativeCreated": 26531.877756118774, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:13:49,528" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/user_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441629.533745, + "msecs": 533.7450504302979, + "relativeCreated": 26537.26029396057, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:49,533" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 21.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441629.575526, + "msecs": 575.5259990692139, + "relativeCreated": 26579.041242599487, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", + "asctime": "2023-02-15 07:13:49,575" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441629.5761633, + "msecs": 576.1632919311523, + "relativeCreated": 26579.678535461426, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:49,576" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441629.5768397, + "msecs": 576.8396854400635, + "relativeCreated": 26580.354928970337, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:49,576" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441629.577875, + "msecs": 577.8748989105225, + "relativeCreated": 26581.390142440796, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:49,577" + } + ], + "time_consumption": 0.25143980979919434 + }, + { + "name": "__tLogger__", + "msg": "Valve temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "21.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441629.8301058, + "msecs": 830.1057815551758, + "relativeCreated": 26833.62102508545, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve temperature setpoint is correct (Content 21.5 and Type is ).", + "asctime": "2023-02-15 07:13:49,830", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve temperature setpoint", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441629.8298187, + "msecs": 829.8187255859375, + "relativeCreated": 26833.33396911621, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve temperature setpoint): 21.5 ()", + "asctime": "2023-02-15 07:13:49,829" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve temperature setpoint", + "=", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441629.829979, + "msecs": 829.9789428710938, + "relativeCreated": 26833.494186401367, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve temperature setpoint): result = 21.5 ()", + "asctime": "2023-02-15 07:13:49,829" + } + ], + "time_consumption": 0.00012683868408203125 + } + ], + "time_consumption": 0.6041505336761475, + "time_start": "2023-02-15 07:13:49,225", + "time_finished": "2023-02-15 07:13:49,830" + }, + "Summer mode test: zigbee/ffe/sleep/heating_valve": { + "name": "__tLogger__", + "msg": "Summer mode test: zigbee/ffe/sleep/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "test_summer_mode", + "created": 1676441629.8306212, + "msecs": 830.6212425231934, + "relativeCreated": 26834.136486053467, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode test: zigbee/ffe/sleep/heating_valve", + "asctime": "2023-02-15 07:13:49,830", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 79, + "funcName": "__test_summer_mode__", + "created": 1676441630.1320157, + "msecs": 132.01570510864258, + "relativeCreated": 27135.530948638916, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Default setpoint)", + "asctime": "2023-02-15 07:13:50,132", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441629.83093, + "msecs": 830.9299945831299, + "relativeCreated": 26834.445238113403, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:13:49,830" + } + ], + "time_consumption": 0.3010857105255127 + }, + { + "name": "__tLogger__", + "msg": "Summer mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441630.132771, + "msecs": 132.77101516723633, + "relativeCreated": 27136.28625869751, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:50,132", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Summer mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441630.132449, + "msecs": 132.44891166687012, + "relativeCreated": 27135.964155197144, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Summer mode): False ()", + "asctime": "2023-02-15 07:13:50,132" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Summer mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441630.1326058, + "msecs": 132.60579109191895, + "relativeCreated": 27136.121034622192, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Summer mode): result = False ()", + "asctime": "2023-02-15 07:13:50,132" + } + ], + "time_consumption": 0.0001652240753173828 + }, + { + "name": "__tLogger__", + "msg": "Activating summer mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 86, + "funcName": "__test_summer_mode__", + "created": 1676441630.4343283, + "msecs": 434.3283176422119, + "relativeCreated": 27437.843561172485, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Activating summer mode", + "asctime": "2023-02-15 07:13:50,434", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/summer_mode/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441630.1331606, + "msecs": 133.16059112548828, + "relativeCreated": 27136.67583465576, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/summer_mode/set and payload true", + "asctime": "2023-02-15 07:13:50,133" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.1433113, + "msecs": 143.3112621307373, + "relativeCreated": 27146.82650566101, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 5}'", + "asctime": "2023-02-15 07:13:50,143" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441630.1435316, + "msecs": 143.53156089782715, + "relativeCreated": 27147.0468044281, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:50,143" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.143757, + "msecs": 143.75710487365723, + "relativeCreated": 27147.27234840393, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'5'", + "asctime": "2023-02-15 07:13:50,143" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/summer_mode", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.144057, + "msecs": 144.057035446167, + "relativeCreated": 27147.57227897644, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'true'", + "asctime": "2023-02-15 07:13:50,144" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.144298, + "msecs": 144.29807662963867, + "relativeCreated": 27147.813320159912, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:50,144" + } + ], + "time_consumption": 0.29003024101257324 + }, + { + "name": "__tLogger__", + "msg": "Summer mode is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441630.4351614, + "msecs": 435.1613521575928, + "relativeCreated": 27438.676595687866, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:50,435", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Summer mode", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441630.4347956, + "msecs": 434.795618057251, + "relativeCreated": 27438.310861587524, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Summer mode): True ()", + "asctime": "2023-02-15 07:13:50,434" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Summer mode", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441630.4349523, + "msecs": 434.9522590637207, + "relativeCreated": 27438.467502593994, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Summer mode): result = True ()", + "asctime": "2023-02-15 07:13:50,434" + } + ], + "time_consumption": 0.0002090930938720703 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441630.435655, + "msecs": 435.6551170349121, + "relativeCreated": 27439.170360565186, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:50,435", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441630.4353848, + "msecs": 435.38475036621094, + "relativeCreated": 27438.899993896484, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 5 ()", + "asctime": "2023-02-15 07:13:50,435" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441630.4355175, + "msecs": 435.5175495147705, + "relativeCreated": 27439.032793045044, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 5 ()", + "asctime": "2023-02-15 07:13:50,435" + } + ], + "time_consumption": 0.00013756752014160156 + }, + { + "name": "__tLogger__", + "msg": "Deactivating summer mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__test_summer_mode__", + "created": 1676441630.7369707, + "msecs": 736.9706630706787, + "relativeCreated": 27740.485906600952, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Deactivating summer mode", + "asctime": "2023-02-15 07:13:50,736", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/summer_mode/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441630.4359474, + "msecs": 435.9474182128906, + "relativeCreated": 27439.462661743164, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/summer_mode/set and payload false", + "asctime": "2023-02-15 07:13:50,435" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 21.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.4478676, + "msecs": 447.86763191223145, + "relativeCreated": 27451.382875442505, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", + "asctime": "2023-02-15 07:13:50,447" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441630.4485443, + "msecs": 448.5442638397217, + "relativeCreated": 27452.059507369995, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:50,448" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.4492593, + "msecs": 449.25928115844727, + "relativeCreated": 27452.77452468872, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:50,449" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/summer_mode", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.4502246, + "msecs": 450.2246379852295, + "relativeCreated": 27453.739881515503, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'false'", + "asctime": "2023-02-15 07:13:50,450" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.451002, + "msecs": 451.0018825531006, + "relativeCreated": 27454.517126083374, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:50,451" + } + ], + "time_consumption": 0.2859687805175781 + }, + { + "name": "__tLogger__", + "msg": "Summer mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441630.7377248, + "msecs": 737.724781036377, + "relativeCreated": 27741.24002456665, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:50,737", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Summer mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441630.7374098, + "msecs": 737.4098300933838, + "relativeCreated": 27740.925073623657, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Summer mode): False ()", + "asctime": "2023-02-15 07:13:50,737" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Summer mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441630.737562, + "msecs": 737.5619411468506, + "relativeCreated": 27741.077184677124, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Summer mode): result = False ()", + "asctime": "2023-02-15 07:13:50,737" + } + ], + "time_consumption": 0.0001628398895263672 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "21.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441630.7381752, + "msecs": 738.1751537322998, + "relativeCreated": 27741.690397262573, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 21.5 and Type is ).", + "asctime": "2023-02-15 07:13:50,738", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441630.7379522, + "msecs": 737.9522323608398, + "relativeCreated": 27741.467475891113, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 21.5 ()", + "asctime": "2023-02-15 07:13:50,737" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441630.7380695, + "msecs": 738.0695343017578, + "relativeCreated": 27741.58477783203, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 21.5 ()", + "asctime": "2023-02-15 07:13:50,738" + } + ], + "time_consumption": 0.00010561943054199219 + } + ], + "time_consumption": 0.9075539112091064, + "time_start": "2023-02-15 07:13:49,830", + "time_finished": "2023-02-15 07:13:50,738" + }, + "User temperature setpoint test for device and virtual device: zigbee/ffe/sleep/heating_valve": { + "name": "__tLogger__", + "msg": "User temperature setpoint test for device and virtual device: zigbee/ffe/sleep/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "test_user_temperature_setpoint", + "created": 1676441630.7386918, + "msecs": 738.6918067932129, + "relativeCreated": 27742.207050323486, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "User temperature setpoint test for device and virtual device: zigbee/ffe/sleep/heating_valve", + "asctime": "2023-02-15 07:13:50,738", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Changing valve temperature setpoint to '%.1f'", + "args": [ + 16.5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 33, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441631.0402486, + "msecs": 40.24863243103027, + "relativeCreated": 28043.763875961304, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing valve temperature setpoint to '16.5'", + "asctime": "2023-02-15 07:13:51,040", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441630.7390964, + "msecs": 739.0964031219482, + "relativeCreated": 27742.61164665222, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:50,739" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.7403817, + "msecs": 740.3817176818848, + "relativeCreated": 27743.89696121216, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:50,740" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 16.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.7451656, + "msecs": 745.1655864715576, + "relativeCreated": 27748.68083000183, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 16.5}'", + "asctime": "2023-02-15 07:13:50,745" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'16.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.7458453, + "msecs": 745.8453178405762, + "relativeCreated": 27749.36056137085, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'16.5'", + "asctime": "2023-02-15 07:13:50,745" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/user_temperature_setpoint", + "b'16.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441630.7465444, + "msecs": 746.544361114502, + "relativeCreated": 27750.059604644775, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'16.5'", + "asctime": "2023-02-15 07:13:50,746" + } + ], + "time_consumption": 0.2937042713165283 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "16.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441631.0410047, + "msecs": 41.00465774536133, + "relativeCreated": 28044.519901275635, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 16.5 and Type is ).", + "asctime": "2023-02-15 07:13:51,041", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441631.0407207, + "msecs": 40.72070121765137, + "relativeCreated": 28044.235944747925, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 16.5 ()", + "asctime": "2023-02-15 07:13:51,040" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441631.0408766, + "msecs": 40.87662696838379, + "relativeCreated": 28044.391870498657, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 16.5 ()", + "asctime": "2023-02-15 07:13:51,040" + } + ], + "time_consumption": 0.00012803077697753906 + }, + { + "name": "__tLogger__", + "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", + "args": [ + "16.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441631.0414577, + "msecs": 41.4576530456543, + "relativeCreated": 28044.972896575928, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device user temperature is correct (Content 16.5 and Type is ).", + "asctime": "2023-02-15 07:13:51,041", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device user temperature", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441631.0412025, + "msecs": 41.202545166015625, + "relativeCreated": 28044.71778869629, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device user temperature): 16.5 ()", + "asctime": "2023-02-15 07:13:51,041" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device user temperature", + "=", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441631.0413163, + "msecs": 41.31627082824707, + "relativeCreated": 28044.83151435852, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device user temperature): result = 16.5 ()", + "asctime": "2023-02-15 07:13:51,041" + } + ], + "time_consumption": 0.00014138221740722656 + }, + { + "name": "__tLogger__", + "msg": "Changing videv user temperature setpoint to '%.1f'", + "args": [ + 21.5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 41, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441631.3429418, + "msecs": 342.9417610168457, + "relativeCreated": 28346.45700454712, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing videv user temperature setpoint to '21.5'", + "asctime": "2023-02-15 07:13:51,342", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/user_temperature_setpoint/set", + "21.5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441631.0417948, + "msecs": 41.794776916503906, + "relativeCreated": 28045.310020446777, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint/set and payload 21.5", + "asctime": "2023-02-15 07:13:51,041" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 21.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.0481133, + "msecs": 48.113346099853516, + "relativeCreated": 28051.628589630127, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", + "asctime": "2023-02-15 07:13:51,048" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441631.0484757, + "msecs": 48.47574234008789, + "relativeCreated": 28051.99098587036, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:51,048" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.0486636, + "msecs": 48.66361618041992, + "relativeCreated": 28052.178859710693, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:51,048" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/user_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.0489178, + "msecs": 48.91777038574219, + "relativeCreated": 28052.433013916016, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:51,048" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.0491312, + "msecs": 49.131155014038086, + "relativeCreated": 28052.64639854431, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:51,049" + } + ], + "time_consumption": 0.2938106060028076 + }, + { + "name": "__tLogger__", + "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "21.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441631.343742, + "msecs": 343.74189376831055, + "relativeCreated": 28347.257137298584, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve device temperature setpoint is correct (Content 21.5 and Type is ).", + "asctime": "2023-02-15 07:13:51,343", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve device temperature setpoint", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441631.3434153, + "msecs": 343.4152603149414, + "relativeCreated": 28346.930503845215, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve device temperature setpoint): 21.5 ()", + "asctime": "2023-02-15 07:13:51,343" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve device temperature setpoint", + "=", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441631.3436122, + "msecs": 343.6121940612793, + "relativeCreated": 28347.127437591553, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve device temperature setpoint): result = 21.5 ()", + "asctime": "2023-02-15 07:13:51,343" + } + ], + "time_consumption": 0.00012969970703125 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "21.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441631.3441553, + "msecs": 344.15531158447266, + "relativeCreated": 28347.670555114746, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 21.5 and Type is ).", + "asctime": "2023-02-15 07:13:51,344", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441631.343945, + "msecs": 343.9450263977051, + "relativeCreated": 28347.46026992798, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 21.5 ()", + "asctime": "2023-02-15 07:13:51,343" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441631.3440564, + "msecs": 344.0563678741455, + "relativeCreated": 28347.57161140442, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 21.5 ()", + "asctime": "2023-02-15 07:13:51,344" + } + ], + "time_consumption": 9.894371032714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing valve temperature setpoint to '%.1f'", + "args": [ + 16.5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 33, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441631.6455145, + "msecs": 645.5144882202148, + "relativeCreated": 28649.02973175049, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing valve temperature setpoint to '16.5'", + "asctime": "2023-02-15 07:13:51,645", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441631.3445106, + "msecs": 344.510555267334, + "relativeCreated": 28348.025798797607, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:51,344" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.3458138, + "msecs": 345.8137512207031, + "relativeCreated": 28349.328994750977, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:51,345" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 16.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.3506231, + "msecs": 350.62313079833984, + "relativeCreated": 28354.138374328613, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 16.5}'", + "asctime": "2023-02-15 07:13:51,350" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'16.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.35143, + "msecs": 351.42993927001953, + "relativeCreated": 28354.945182800293, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'16.5'", + "asctime": "2023-02-15 07:13:51,351" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/user_temperature_setpoint", + "b'16.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.3521845, + "msecs": 352.184534072876, + "relativeCreated": 28355.69977760315, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'16.5'", + "asctime": "2023-02-15 07:13:51,352" + } + ], + "time_consumption": 0.29332995414733887 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "16.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441631.646168, + "msecs": 646.1679935455322, + "relativeCreated": 28649.683237075806, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 16.5 and Type is ).", + "asctime": "2023-02-15 07:13:51,646", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441631.645924, + "msecs": 645.9240913391113, + "relativeCreated": 28649.439334869385, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 16.5 ()", + "asctime": "2023-02-15 07:13:51,645" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441631.6460595, + "msecs": 646.059513092041, + "relativeCreated": 28649.574756622314, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 16.5 ()", + "asctime": "2023-02-15 07:13:51,646" + } + ], + "time_consumption": 0.00010848045349121094 + }, + { + "name": "__tLogger__", + "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", + "args": [ + "16.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441631.6465702, + "msecs": 646.5702056884766, + "relativeCreated": 28650.08544921875, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device user temperature is correct (Content 16.5 and Type is ).", + "asctime": "2023-02-15 07:13:51,646", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device user temperature", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441631.646338, + "msecs": 646.3379859924316, + "relativeCreated": 28649.853229522705, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device user temperature): 16.5 ()", + "asctime": "2023-02-15 07:13:51,646" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device user temperature", + "=", + "16.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441631.6464746, + "msecs": 646.4745998382568, + "relativeCreated": 28649.98984336853, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device user temperature): result = 16.5 ()", + "asctime": "2023-02-15 07:13:51,646" + } + ], + "time_consumption": 9.560585021972656e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing videv user temperature setpoint to '%.1f'", + "args": [ + 21.5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 41, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441631.947902, + "msecs": 947.9019641876221, + "relativeCreated": 28951.417207717896, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing videv user temperature setpoint to '21.5'", + "asctime": "2023-02-15 07:13:51,947", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/user_temperature_setpoint/set", + "21.5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441631.6468225, + "msecs": 646.822452545166, + "relativeCreated": 28650.33769607544, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint/set and payload 21.5", + "asctime": "2023-02-15 07:13:51,646" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve/set", + "b'{\"current_heating_setpoint\": 21.5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.6522737, + "msecs": 652.2736549377441, + "relativeCreated": 28655.788898468018, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", + "asctime": "2023-02-15 07:13:51,652" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441631.6528132, + "msecs": 652.813196182251, + "relativeCreated": 28656.328439712524, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:51,652" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.6534245, + "msecs": 653.4245014190674, + "relativeCreated": 28656.93974494934, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:51,653" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/heating_valve/user_temperature_setpoint", + "b'21.5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.6542003, + "msecs": 654.2003154754639, + "relativeCreated": 28657.715559005737, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", + "asctime": "2023-02-15 07:13:51,654" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/heating_valve", + "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.654896, + "msecs": 654.8960208892822, + "relativeCreated": 28658.411264419556, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:51,654" + } + ], + "time_consumption": 0.29300594329833984 + }, + { + "name": "__tLogger__", + "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "21.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441631.9486532, + "msecs": 948.6532211303711, + "relativeCreated": 28952.168464660645, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve device temperature setpoint is correct (Content 21.5 and Type is ).", + "asctime": "2023-02-15 07:13:51,948", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve device temperature setpoint", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441631.9483697, + "msecs": 948.3697414398193, + "relativeCreated": 28951.884984970093, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve device temperature setpoint): 21.5 ()", + "asctime": "2023-02-15 07:13:51,948" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve device temperature setpoint", + "=", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441631.948526, + "msecs": 948.5259056091309, + "relativeCreated": 28952.041149139404, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve device temperature setpoint): result = 21.5 ()", + "asctime": "2023-02-15 07:13:51,948" + } + ], + "time_consumption": 0.00012731552124023438 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "21.5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441631.949124, + "msecs": 949.1240978240967, + "relativeCreated": 28952.63934135437, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 21.5 and Type is ).", + "asctime": "2023-02-15 07:13:51,949", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441631.9489026, + "msecs": 948.9026069641113, + "relativeCreated": 28952.417850494385, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 21.5 ()", + "asctime": "2023-02-15 07:13:51,948" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "21.5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441631.9490197, + "msecs": 949.0196704864502, + "relativeCreated": 28952.534914016724, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 21.5 ()", + "asctime": "2023-02-15 07:13:51,949" + } + ], + "time_consumption": 0.00010442733764648438 + } + ], + "time_consumption": 1.2104322910308838, + "time_start": "2023-02-15 07:13:50,738", + "time_finished": "2023-02-15 07:13:51,949" + }, + "Brightness test for device and virtual device: zigbee/ffe/sleep/main_light": { + "name": "__tLogger__", + "msg": "Brightness test for device and virtual device: zigbee/ffe/sleep/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_brightness", + "created": 1676441631.9496515, + "msecs": 949.6514797210693, + "relativeCreated": 28953.166723251343, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness test for device and virtual device: zigbee/ffe/sleep/main_light", + "asctime": "2023-02-15 07:13:51,949", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 57, + "funcName": "__test_brightness__", + "created": 1676441632.2517514, + "msecs": 251.75142288208008, + "relativeCreated": 29255.266666412354, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:13:52,251", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441631.9499633, + "msecs": 949.9633312225342, + "relativeCreated": 28953.478574752808, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:51,949" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441631.9506714, + "msecs": 950.6714344024658, + "relativeCreated": 28954.18667793274, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:51,950" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.951845, + "msecs": 951.8449306488037, + "relativeCreated": 28955.360174179077, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:51,951" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441631.952709, + "msecs": 952.7089595794678, + "relativeCreated": 28956.22420310974, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:51,952" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.0033774, + "msecs": 3.3774375915527344, + "relativeCreated": 29006.892681121826, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:52,003" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.0042512, + "msecs": 4.251241683959961, + "relativeCreated": 29007.766485214233, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:52,004" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.0049129, + "msecs": 4.912853240966797, + "relativeCreated": 29008.42809677124, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:52,004" + } + ], + "time_consumption": 0.24683856964111328 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441632.2525218, + "msecs": 252.52175331115723, + "relativeCreated": 29256.03699684143, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:52,252", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441632.2522037, + "msecs": 252.20370292663574, + "relativeCreated": 29255.71894645691, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:13:52,252" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441632.252357, + "msecs": 252.35700607299805, + "relativeCreated": 29255.87224960327, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:52,252" + } + ], + "time_consumption": 0.0001647472381591797 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441632.5540977, + "msecs": 554.0976524353027, + "relativeCreated": 29557.612895965576, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:13:52,554", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441632.2529225, + "msecs": 252.92253494262695, + "relativeCreated": 29256.4377784729, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:52,252" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.2542064, + "msecs": 254.20641899108887, + "relativeCreated": 29257.721662521362, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:52,254" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.256651, + "msecs": 256.6509246826172, + "relativeCreated": 29260.16616821289, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:13:52,256" + } + ], + "time_consumption": 0.29744672775268555 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441632.5548685, + "msecs": 554.8684597015381, + "relativeCreated": 29558.38370323181, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:52,554", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441632.5545926, + "msecs": 554.5926094055176, + "relativeCreated": 29558.10785293579, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:13:52,554" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441632.5547485, + "msecs": 554.74853515625, + "relativeCreated": 29558.263778686523, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:52,554" + } + ], + "time_consumption": 0.00011992454528808594 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441632.5553117, + "msecs": 555.3116798400879, + "relativeCreated": 29558.82692337036, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:52,555", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441632.555064, + "msecs": 555.0639629364014, + "relativeCreated": 29558.579206466675, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:13:52,555" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441632.5551727, + "msecs": 555.1726818084717, + "relativeCreated": 29558.687925338745, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:52,555" + } + ], + "time_consumption": 0.00013899803161621094 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441632.8568003, + "msecs": 856.8003177642822, + "relativeCreated": 29860.315561294556, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:13:52,856", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441632.5556412, + "msecs": 555.6411743164062, + "relativeCreated": 29559.15641784668, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:13:52,555" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.559054, + "msecs": 559.053897857666, + "relativeCreated": 29562.56914138794, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:52,559" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441632.5597305, + "msecs": 559.7305297851562, + "relativeCreated": 29563.24577331543, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:52,559" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.5608628, + "msecs": 560.8627796173096, + "relativeCreated": 29564.378023147583, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:52,560" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.6040444, + "msecs": 604.0444374084473, + "relativeCreated": 29607.55968093872, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:52,604" + } + ], + "time_consumption": 0.25275588035583496 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441632.8575177, + "msecs": 857.5177192687988, + "relativeCreated": 29861.032962799072, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:52,857", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441632.857254, + "msecs": 857.2540283203125, + "relativeCreated": 29860.769271850586, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:13:52,857" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441632.8574014, + "msecs": 857.4013710021973, + "relativeCreated": 29860.91661453247, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:52,857" + } + ], + "time_consumption": 0.0001163482666015625 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441632.8579588, + "msecs": 857.9587936401367, + "relativeCreated": 29861.47403717041, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:52,857", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441632.8577502, + "msecs": 857.7501773834229, + "relativeCreated": 29861.265420913696, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:13:52,857" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441632.857862, + "msecs": 857.8619956970215, + "relativeCreated": 29861.377239227295, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:52,857" + } + ], + "time_consumption": 9.679794311523438e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441633.1595073, + "msecs": 159.50727462768555, + "relativeCreated": 30163.02251815796, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:13:53,159", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441632.8583243, + "msecs": 858.3242893218994, + "relativeCreated": 29861.839532852173, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:52,858" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.859632, + "msecs": 859.6320152282715, + "relativeCreated": 29863.147258758545, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:52,859" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441632.8620398, + "msecs": 862.0398044586182, + "relativeCreated": 29865.55504798889, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:13:52,862" + } + ], + "time_consumption": 0.2974674701690674 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441633.1602824, + "msecs": 160.28237342834473, + "relativeCreated": 30163.797616958618, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:53,160", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441633.1599972, + "msecs": 159.99722480773926, + "relativeCreated": 30163.512468338013, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:13:53,159" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441633.160161, + "msecs": 160.16101837158203, + "relativeCreated": 30163.676261901855, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:53,160" + } + ], + "time_consumption": 0.00012135505676269531 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441633.160682, + "msecs": 160.68196296691895, + "relativeCreated": 30164.197206497192, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:13:53,160", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441633.160474, + "msecs": 160.47406196594238, + "relativeCreated": 30163.989305496216, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:13:53,160" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441633.1605837, + "msecs": 160.5837345123291, + "relativeCreated": 30164.098978042603, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:13:53,160" + } + ], + "time_consumption": 9.822845458984375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441633.4620755, + "msecs": 462.07547187805176, + "relativeCreated": 30465.590715408325, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:13:53,462", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441633.1609619, + "msecs": 160.96186637878418, + "relativeCreated": 30164.477109909058, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:13:53,160" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441633.164251, + "msecs": 164.25108909606934, + "relativeCreated": 30167.766332626343, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:13:53,164" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441633.164908, + "msecs": 164.90793228149414, + "relativeCreated": 30168.423175811768, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:53,164" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441633.1660292, + "msecs": 166.0292148590088, + "relativeCreated": 30169.544458389282, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:53,166" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441633.2099905, + "msecs": 209.9905014038086, + "relativeCreated": 30213.505744934082, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:13:53,209" + } + ], + "time_consumption": 0.25208497047424316 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441633.4628835, + "msecs": 462.88347244262695, + "relativeCreated": 30466.3987159729, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:13:53,462", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441633.4626076, + "msecs": 462.60762214660645, + "relativeCreated": 30466.12286567688, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:13:53,462" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441633.4627647, + "msecs": 462.7647399902344, + "relativeCreated": 30466.279983520508, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:13:53,462" + } + ], + "time_consumption": 0.00011873245239257812 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "__test_brightness__", + "created": 1676441633.7642186, + "msecs": 764.2185688018799, + "relativeCreated": 30767.733812332153, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:13:53,764", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441633.4631772, + "msecs": 463.1772041320801, + "relativeCreated": 30466.692447662354, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:53,463" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441633.4645233, + "msecs": 464.5233154296875, + "relativeCreated": 30468.03855895996, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:53,464" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441633.4687233, + "msecs": 468.7232971191406, + "relativeCreated": 30472.238540649414, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:53,468" + } + ], + "time_consumption": 0.29549527168273926 + } + ], + "time_consumption": 1.8145670890808105, + "time_start": "2023-02-15 07:13:51,949", + "time_finished": "2023-02-15 07:13:53,764" + }, + "Color temperature test for device and virtual device: zigbee/ffe/sleep/main_light": { + "name": "__tLogger__", + "msg": "Color temperature test for device and virtual device: zigbee/ffe/sleep/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 81, + "funcName": "test_color_temp", + "created": 1676441633.7649958, + "msecs": 764.995813369751, + "relativeCreated": 30768.511056900024, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Color temperature test for device and virtual device: zigbee/ffe/sleep/main_light", + "asctime": "2023-02-15 07:13:53,764", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 88, + "funcName": "__test_color_temp__", + "created": 1676441634.067094, + "msecs": 67.09408760070801, + "relativeCreated": 31070.60933113098, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:13:54,067", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441633.7653475, + "msecs": 765.3474807739258, + "relativeCreated": 30768.8627243042, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:53,765" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441633.7660053, + "msecs": 766.005277633667, + "relativeCreated": 30769.52052116394, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:53,766" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441633.7672575, + "msecs": 767.2574520111084, + "relativeCreated": 30770.772695541382, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:53,767" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441633.7681222, + "msecs": 768.1221961975098, + "relativeCreated": 30771.637439727783, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:53,768" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441633.8193583, + "msecs": 819.3583488464355, + "relativeCreated": 30822.87359237671, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:53,819" + } + ], + "time_consumption": 0.24773573875427246 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441634.067716, + "msecs": 67.71588325500488, + "relativeCreated": 31071.23112678528, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:54,067", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441634.067481, + "msecs": 67.48104095458984, + "relativeCreated": 31070.996284484863, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:13:54,067" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441634.0676134, + "msecs": 67.61336326599121, + "relativeCreated": 31071.128606796265, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:54,067" + } + ], + "time_consumption": 0.00010251998901367188 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441634.3691747, + "msecs": 369.1747188568115, + "relativeCreated": 31372.689962387085, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:13:54,369", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441634.0680623, + "msecs": 68.06230545043945, + "relativeCreated": 31071.577548980713, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:13:54,068" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441634.0692072, + "msecs": 69.20719146728516, + "relativeCreated": 31072.72243499756, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:13:54,069" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441634.0712686, + "msecs": 71.26855850219727, + "relativeCreated": 31074.78380203247, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:13:54,071" + } + ], + "time_consumption": 0.29790616035461426 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441634.3698971, + "msecs": 369.89712715148926, + "relativeCreated": 31373.412370681763, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:54,369", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441634.3696282, + "msecs": 369.6281909942627, + "relativeCreated": 31373.143434524536, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:13:54,369" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441634.369777, + "msecs": 369.77696418762207, + "relativeCreated": 31373.292207717896, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:13:54,369" + } + ], + "time_consumption": 0.0001201629638671875 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441634.3703358, + "msecs": 370.33581733703613, + "relativeCreated": 31373.85106086731, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:54,370", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441634.3700893, + "msecs": 370.0892925262451, + "relativeCreated": 31373.60453605652, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:13:54,370" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441634.3701973, + "msecs": 370.1972961425781, + "relativeCreated": 31373.71253967285, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:13:54,370" + } + ], + "time_consumption": 0.0001385211944580078 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441634.6718068, + "msecs": 671.806812286377, + "relativeCreated": 31675.32205581665, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:13:54,671", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441634.3707292, + "msecs": 370.7292079925537, + "relativeCreated": 31374.244451522827, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:13:54,370" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441634.3740156, + "msecs": 374.01556968688965, + "relativeCreated": 31377.530813217163, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:54,374" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441634.3747134, + "msecs": 374.7134208679199, + "relativeCreated": 31378.228664398193, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:54,374" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441634.3758435, + "msecs": 375.8435249328613, + "relativeCreated": 31379.358768463135, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:54,375" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441634.4190817, + "msecs": 419.0816879272461, + "relativeCreated": 31422.59693145752, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:54,419" + } + ], + "time_consumption": 0.25272512435913086 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441634.6722984, + "msecs": 672.2984313964844, + "relativeCreated": 31675.813674926758, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:54,672", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441634.6721087, + "msecs": 672.1086502075195, + "relativeCreated": 31675.623893737793, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:13:54,672" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441634.6721992, + "msecs": 672.1992492675781, + "relativeCreated": 31675.71449279785, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:13:54,672" + } + ], + "time_consumption": 9.918212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441634.6725588, + "msecs": 672.5587844848633, + "relativeCreated": 31676.074028015137, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:54,672", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441634.6724193, + "msecs": 672.4193096160889, + "relativeCreated": 31675.934553146362, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:13:54,672" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441634.6724854, + "msecs": 672.4853515625, + "relativeCreated": 31676.000595092773, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:13:54,672" + } + ], + "time_consumption": 7.343292236328125e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441634.9737816, + "msecs": 973.7815856933594, + "relativeCreated": 31977.296829223633, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:13:54,973", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441634.6727977, + "msecs": 672.797679901123, + "relativeCreated": 31676.312923431396, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:13:54,672" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441634.6736355, + "msecs": 673.6354827880859, + "relativeCreated": 31677.15072631836, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:13:54,673" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441634.6751707, + "msecs": 675.1706600189209, + "relativeCreated": 31678.685903549194, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:13:54,675" + } + ], + "time_consumption": 0.2986109256744385 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441634.9745624, + "msecs": 974.562406539917, + "relativeCreated": 31978.07765007019, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:54,974", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441634.974235, + "msecs": 974.2350578308105, + "relativeCreated": 31977.750301361084, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:13:54,974" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441634.9743857, + "msecs": 974.3857383728027, + "relativeCreated": 31977.900981903076, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:13:54,974" + } + ], + "time_consumption": 0.0001766681671142578 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441634.974973, + "msecs": 974.9729633331299, + "relativeCreated": 31978.488206863403, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:13:54,974", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441634.974766, + "msecs": 974.7660160064697, + "relativeCreated": 31978.281259536743, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:13:54,974" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441634.9748757, + "msecs": 974.8756885528564, + "relativeCreated": 31978.39093208313, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:13:54,974" + } + ], + "time_consumption": 9.72747802734375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441635.2764804, + "msecs": 276.48043632507324, + "relativeCreated": 32279.995679855347, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:13:55,276", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441634.9753091, + "msecs": 975.3091335296631, + "relativeCreated": 31978.824377059937, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:13:54,975" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441634.9784973, + "msecs": 978.4972667694092, + "relativeCreated": 31982.012510299683, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:13:54,978" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441634.9791887, + "msecs": 979.1886806488037, + "relativeCreated": 31982.703924179077, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:54,979" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441634.9803221, + "msecs": 980.3221225738525, + "relativeCreated": 31983.837366104126, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:54,980" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441635.0230923, + "msecs": 23.092269897460938, + "relativeCreated": 32026.607513427734, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:13:55,023" + } + ], + "time_consumption": 0.2533881664276123 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441635.2772963, + "msecs": 277.2963047027588, + "relativeCreated": 32280.811548233032, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:55,277", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441635.2769885, + "msecs": 276.9885063171387, + "relativeCreated": 32280.503749847412, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:13:55,276" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441635.2771614, + "msecs": 277.1613597869873, + "relativeCreated": 32280.67660331726, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:13:55,277" + } + ], + "time_consumption": 0.00013494491577148438 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 105, + "funcName": "__test_color_temp__", + "created": 1676441635.5788867, + "msecs": 578.8867473602295, + "relativeCreated": 32582.401990890503, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:13:55,578", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441635.2776186, + "msecs": 277.6186466217041, + "relativeCreated": 32281.133890151978, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:55,277" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441635.2791615, + "msecs": 279.1614532470703, + "relativeCreated": 32282.676696777344, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:55,279" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441635.2839355, + "msecs": 283.935546875, + "relativeCreated": 32287.450790405273, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:55,283" + } + ], + "time_consumption": 0.2949512004852295 + } + ], + "time_consumption": 1.8138909339904785, + "time_start": "2023-02-15 07:13:53,764", + "time_finished": "2023-02-15 07:13:55,578" + }, + "Power On/ Off test for device and virtual device: shellies/ffe/sleep/main_light": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: shellies/ffe/sleep/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441635.57968, + "msecs": 579.6799659729004, + "relativeCreated": 32583.195209503174, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: shellies/ffe/sleep/main_light", + "asctime": "2023-02-15 07:13:55,579", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441635.5802107, + "msecs": 580.2106857299805, + "relativeCreated": 32583.725929260254, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:55,580", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441635.5799522, + "msecs": 579.9522399902344, + "relativeCreated": 32583.467483520508, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:55,579" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441635.5800924, + "msecs": 580.0924301147461, + "relativeCreated": 32583.60767364502, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:55,580" + } + ], + "time_consumption": 0.000118255615234375 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441635.8820884, + "msecs": 882.0884227752686, + "relativeCreated": 32885.60366630554, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:55,882", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441635.5805287, + "msecs": 580.528736114502, + "relativeCreated": 32584.043979644775, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:55,580" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441635.5811553, + "msecs": 581.1553001403809, + "relativeCreated": 32584.670543670654, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:55,581" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441635.582301, + "msecs": 582.3009014129639, + "relativeCreated": 32585.816144943237, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:55,582" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441635.5832374, + "msecs": 583.2374095916748, + "relativeCreated": 32586.75265312195, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:55,583" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441635.627483, + "msecs": 627.4828910827637, + "relativeCreated": 32630.998134613037, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:55,627" + } + ], + "time_consumption": 0.2546055316925049 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441635.88231, + "msecs": 882.3099136352539, + "relativeCreated": 32885.82515716553, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:55,882", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441635.8822474, + "msecs": 882.2474479675293, + "relativeCreated": 32885.7626914978, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:55,882" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441635.8822825, + "msecs": 882.2824954986572, + "relativeCreated": 32885.79773902893, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:55,882" + } + ], + "time_consumption": 2.7418136596679688e-05 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441635.8823967, + "msecs": 882.3966979980469, + "relativeCreated": 32885.91194152832, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:55,882", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441635.8823526, + "msecs": 882.3525905609131, + "relativeCreated": 32885.86783409119, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:55,882" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441635.8823757, + "msecs": 882.3757171630859, + "relativeCreated": 32885.89096069336, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:55,882" + } + ], + "time_consumption": 2.09808349609375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441636.1833537, + "msecs": 183.35366249084473, + "relativeCreated": 33186.86890602112, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:56,183", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441635.882497, + "msecs": 882.4970722198486, + "relativeCreated": 32886.01231575012, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:55,882" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441635.8836083, + "msecs": 883.608341217041, + "relativeCreated": 32887.123584747314, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:13:55,883" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441635.8837705, + "msecs": 883.7704658508301, + "relativeCreated": 32887.2857093811, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:55,883" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441635.8840725, + "msecs": 884.0725421905518, + "relativeCreated": 32887.587785720825, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:55,884" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441635.971126, + "msecs": 971.1260795593262, + "relativeCreated": 32974.6413230896, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:55,971" + } + ], + "time_consumption": 0.21222758293151855 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441636.1840796, + "msecs": 184.07964706420898, + "relativeCreated": 33187.59489059448, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:56,184", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441636.1838093, + "msecs": 183.8092803955078, + "relativeCreated": 33187.32452392578, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:56,183" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441636.183959, + "msecs": 183.9590072631836, + "relativeCreated": 33187.47425079346, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:56,183" + } + ], + "time_consumption": 0.00012063980102539062 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441636.1845288, + "msecs": 184.52882766723633, + "relativeCreated": 33188.04407119751, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:56,184", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441636.1842744, + "msecs": 184.27443504333496, + "relativeCreated": 33187.78967857361, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:13:56,184" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441636.1844292, + "msecs": 184.42916870117188, + "relativeCreated": 33187.944412231445, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:13:56,184" + } + ], + "time_consumption": 9.965896606445312e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441636.4865334, + "msecs": 486.53340339660645, + "relativeCreated": 33490.04864692688, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:13:56,486", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441636.184819, + "msecs": 184.81898307800293, + "relativeCreated": 33188.33422660828, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:13:56,184" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441636.1854389, + "msecs": 185.438871383667, + "relativeCreated": 33188.95411491394, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:13:56,185" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.1866434, + "msecs": 186.6433620452881, + "relativeCreated": 33190.15860557556, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:13:56,186" + }, + { + "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffe/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.1875193, + "msecs": 187.51931190490723, + "relativeCreated": 33191.03455543518, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:13:56,187" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.2316678, + "msecs": 231.66775703430176, + "relativeCreated": 33235.183000564575, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:13:56,231" + } + ], + "time_consumption": 0.2548656463623047 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441636.4873333, + "msecs": 487.3332977294922, + "relativeCreated": 33490.848541259766, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:56,487", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441636.487027, + "msecs": 487.0269298553467, + "relativeCreated": 33490.54217338562, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:13:56,487" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441636.487196, + "msecs": 487.1959686279297, + "relativeCreated": 33490.7112121582, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:13:56,487" + } + ], + "time_consumption": 0.0001373291015625 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441636.4878733, + "msecs": 487.8733158111572, + "relativeCreated": 33491.38855934143, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:56,487", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441636.4875517, + "msecs": 487.5516891479492, + "relativeCreated": 33491.06693267822, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:13:56,487" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441636.4877176, + "msecs": 487.7176284790039, + "relativeCreated": 33491.23287200928, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:13:56,487" + } + ], + "time_consumption": 0.0001556873321533203 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441636.7892575, + "msecs": 789.2575263977051, + "relativeCreated": 33792.77276992798, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:13:56,789", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441636.488158, + "msecs": 488.1579875946045, + "relativeCreated": 33491.67323112488, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffe/sleep/main_light/state/set and payload false", + "asctime": "2023-02-15 07:13:56,488" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.4913428, + "msecs": 491.34278297424316, + "relativeCreated": 33494.85802650452, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:13:56,491" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441636.491942, + "msecs": 491.9419288635254, + "relativeCreated": 33495.4571723938, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:13:56,491" + }, + { + "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffe/sleep/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.4931545, + "msecs": 493.15452575683594, + "relativeCreated": 33496.66976928711, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:13:56,493" + }, + { + "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffe/sleep/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.5792239, + "msecs": 579.2238712310791, + "relativeCreated": 33582.73911476135, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:13:56,579" + } + ], + "time_consumption": 0.21003365516662598 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441636.7898996, + "msecs": 789.8995876312256, + "relativeCreated": 33793.4148311615, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:56,789", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441636.7896566, + "msecs": 789.6566390991211, + "relativeCreated": 33793.171882629395, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:13:56,789" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441636.7897892, + "msecs": 789.7891998291016, + "relativeCreated": 33793.304443359375, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:13:56,789" + } + ], + "time_consumption": 0.00011038780212402344 + } + ], + "time_consumption": 1.2102196216583252, + "time_start": "2023-02-15 07:13:55,579", + "time_finished": "2023-02-15 07:13:56,789" + }, + "Away mode test: zigbee/ffw/bath/heating_valve": { + "name": "__tLogger__", + "msg": "Away mode test: zigbee/ffw/bath/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 101, + "funcName": "test_away_mode", + "created": 1676441636.790396, + "msecs": 790.395975112915, + "relativeCreated": 33793.91121864319, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode test: zigbee/ffw/bath/heating_valve", + "asctime": "2023-02-15 07:13:56,790", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 106, + "funcName": "__test_away_mode__", + "created": 1676441637.0918307, + "msecs": 91.83073043823242, + "relativeCreated": 34095.345973968506, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Default setpoint)", + "asctime": "2023-02-15 07:13:57,091", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441636.7907608, + "msecs": 790.7607555389404, + "relativeCreated": 33794.275999069214, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:13:56,790" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/user_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.7962394, + "msecs": 796.2393760681152, + "relativeCreated": 33799.75461959839, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:13:56,796" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.797014, + "msecs": 797.0139980316162, + "relativeCreated": 33800.52924156189, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:13:56,797" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441636.7974398, + "msecs": 797.4398136138916, + "relativeCreated": 33800.955057144165, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:56,797" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.7981074, + "msecs": 798.107385635376, + "relativeCreated": 33801.62262916565, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:13:56,798" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441636.799157, + "msecs": 799.156904220581, + "relativeCreated": 33802.672147750854, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:56,799" + } + ], + "time_consumption": 0.29267382621765137 + }, + { + "name": "__tLogger__", + "msg": "Away mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441637.0925999, + "msecs": 92.59986877441406, + "relativeCreated": 34096.11511230469, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:57,092", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Away mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441637.0922954, + "msecs": 92.29540824890137, + "relativeCreated": 34095.810651779175, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Away mode): False ()", + "asctime": "2023-02-15 07:13:57,092" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Away mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441637.0924637, + "msecs": 92.46373176574707, + "relativeCreated": 34095.97897529602, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Away mode): result = False ()", + "asctime": "2023-02-15 07:13:57,092" + } + ], + "time_consumption": 0.0001361370086669922 + }, + { + "name": "__tLogger__", + "msg": "Activating away mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 113, + "funcName": "__test_away_mode__", + "created": 1676441637.394186, + "msecs": 394.18601989746094, + "relativeCreated": 34397.701263427734, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Activating away mode", + "asctime": "2023-02-15 07:13:57,394", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/away_mode/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441637.093003, + "msecs": 93.0030345916748, + "relativeCreated": 34096.51827812195, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/away_mode/set and payload true", + "asctime": "2023-02-15 07:13:57,093" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 18}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441637.1035995, + "msecs": 103.59954833984375, + "relativeCreated": 34107.11479187012, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", + "asctime": "2023-02-15 07:13:57,103" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441637.103864, + "msecs": 103.86395454406738, + "relativeCreated": 34107.37919807434, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:57,103" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'18'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441637.1041274, + "msecs": 104.12740707397461, + "relativeCreated": 34107.64265060425, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:13:57,104" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/away_mode", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441637.1044414, + "msecs": 104.44140434265137, + "relativeCreated": 34107.956647872925, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'true'", + "asctime": "2023-02-15 07:13:57,104" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441637.104685, + "msecs": 104.68506813049316, + "relativeCreated": 34108.20031166077, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:57,104" + } + ], + "time_consumption": 0.2895009517669678 + }, + { + "name": "__tLogger__", + "msg": "Away mode is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441637.3949323, + "msecs": 394.9322700500488, + "relativeCreated": 34398.44751358032, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:57,394", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Away mode", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441637.3946571, + "msecs": 394.6571350097656, + "relativeCreated": 34398.17237854004, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Away mode): True ()", + "asctime": "2023-02-15 07:13:57,394" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Away mode", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441637.3948123, + "msecs": 394.81234550476074, + "relativeCreated": 34398.327589035034, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Away mode): result = True ()", + "asctime": "2023-02-15 07:13:57,394" + } + ], + "time_consumption": 0.00011992454528808594 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "18", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441637.3953629, + "msecs": 395.36285400390625, + "relativeCreated": 34398.87809753418, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:13:57,395", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441637.3951278, + "msecs": 395.1277732849121, + "relativeCreated": 34398.643016815186, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 18 ()", + "asctime": "2023-02-15 07:13:57,395" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441637.3952358, + "msecs": 395.2357769012451, + "relativeCreated": 34398.75102043152, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 18 ()", + "asctime": "2023-02-15 07:13:57,395" + } + ], + "time_consumption": 0.0001270771026611328 + }, + { + "name": "__tLogger__", + "msg": "Deactivating away mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 119, + "funcName": "__test_away_mode__", + "created": 1676441637.6966605, + "msecs": 696.6605186462402, + "relativeCreated": 34700.175762176514, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Deactivating away mode", + "asctime": "2023-02-15 07:13:57,696", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/away_mode/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441637.3957243, + "msecs": 395.7242965698242, + "relativeCreated": 34399.2395401001, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/away_mode/set and payload false", + "asctime": "2023-02-15 07:13:57,395" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441637.4077919, + "msecs": 407.7918529510498, + "relativeCreated": 34411.30709648132, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:13:57,407" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441637.4084063, + "msecs": 408.40625762939453, + "relativeCreated": 34411.92150115967, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:57,408" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441637.4092147, + "msecs": 409.21473503112793, + "relativeCreated": 34412.7299785614, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:13:57,409" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/away_mode", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441637.410137, + "msecs": 410.1369380950928, + "relativeCreated": 34413.652181625366, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'false'", + "asctime": "2023-02-15 07:13:57,410" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441637.410926, + "msecs": 410.92610359191895, + "relativeCreated": 34414.44134712219, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:57,410" + } + ], + "time_consumption": 0.2857344150543213 + }, + { + "name": "__tLogger__", + "msg": "Away mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441637.6974075, + "msecs": 697.4074840545654, + "relativeCreated": 34700.92272758484, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:57,697", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Away mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441637.6970925, + "msecs": 697.0925331115723, + "relativeCreated": 34700.607776641846, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Away mode): False ()", + "asctime": "2023-02-15 07:13:57,697" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Away mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441637.6972835, + "msecs": 697.2835063934326, + "relativeCreated": 34700.798749923706, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Away mode): result = False ()", + "asctime": "2023-02-15 07:13:57,697" + } + ], + "time_consumption": 0.0001239776611328125 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "23", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441637.6978133, + "msecs": 697.8132724761963, + "relativeCreated": 34701.32851600647, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:13:57,697", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441637.697602, + "msecs": 697.6020336151123, + "relativeCreated": 34701.117277145386, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:13:57,697" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441637.6977131, + "msecs": 697.7131366729736, + "relativeCreated": 34701.22838020325, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:13:57,697" + } + ], + "time_consumption": 0.00010013580322265625 + } + ], + "time_consumption": 0.9074172973632812, + "time_start": "2023-02-15 07:13:56,790", + "time_finished": "2023-02-15 07:13:57,697" + }, + "Boost mode test: zigbee/ffw/bath/heating_valve": { + "name": "__tLogger__", + "msg": "Boost mode test: zigbee/ffw/bath/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 128, + "funcName": "test_boost_mode", + "created": 1676441637.698313, + "msecs": 698.3129978179932, + "relativeCreated": 34701.82824134827, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost mode test: zigbee/ffw/bath/heating_valve", + "asctime": "2023-02-15 07:13:57,698", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 133, + "funcName": "__test_boost_mode__", + "created": 1676441637.9997993, + "msecs": 999.7992515563965, + "relativeCreated": 35003.31449508667, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Default setpoint)", + "asctime": "2023-02-15 07:13:57,999", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441637.6986685, + "msecs": 698.6684799194336, + "relativeCreated": 34702.18372344971, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:13:57,698" + } + ], + "time_consumption": 0.3011307716369629 + }, + { + "name": "__tLogger__", + "msg": "Boost timer is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441638.00056, + "msecs": 0.5600452423095703, + "relativeCreated": 35004.07528877258, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost timer is correct (Content 0 and Type is ).", + "asctime": "2023-02-15 07:13:58,000", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Boost timer", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441638.0002403, + "msecs": 0.240325927734375, + "relativeCreated": 35003.75556945801, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Boost timer): 0 ()", + "asctime": "2023-02-15 07:13:58,000" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Boost timer", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441638.0004346, + "msecs": 0.43463706970214844, + "relativeCreated": 35003.949880599976, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Boost timer): result = 0 ()", + "asctime": "2023-02-15 07:13:58,000" + } + ], + "time_consumption": 0.00012540817260742188 + }, + { + "name": "__tLogger__", + "msg": "Activating boost mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 140, + "funcName": "__test_boost_mode__", + "created": 1676441638.302074, + "msecs": 302.0739555358887, + "relativeCreated": 35305.58919906616, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Activating boost mode", + "asctime": "2023-02-15 07:13:58,302", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.start_boost.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/start_boost/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441638.0009446, + "msecs": 0.9446144104003906, + "relativeCreated": 35004.459857940674, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/start_boost/set and payload true", + "asctime": "2023-02-15 07:13:58,000" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.boost_timer", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/boost_timer", + "b'900'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.0130084, + "msecs": 13.008356094360352, + "relativeCreated": 35016.523599624634, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/boost_timer and payload b'900'", + "asctime": "2023-02-15 07:13:58,013" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.013406, + "msecs": 13.406038284301758, + "relativeCreated": 35016.921281814575, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2023-02-15 07:13:58,013" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441638.0136087, + "msecs": 13.608694076538086, + "relativeCreated": 35017.12393760681, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:58,013" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.0139132, + "msecs": 13.913154602050781, + "relativeCreated": 35017.428398132324, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2023-02-15 07:13:58,013" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.0144293, + "msecs": 14.429330825805664, + "relativeCreated": 35017.94457435608, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:58,014" + } + ], + "time_consumption": 0.287644624710083 + }, + { + "name": "__tLogger__", + "msg": "Boost timer is greater expectation (Content %s and Type is %s).", + "args": [ + "900", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 230, + "funcName": "greater_chk", + "created": 1676441638.3029058, + "msecs": 302.905797958374, + "relativeCreated": 35306.42104148865, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost timer is greater expectation (Content 900 and Type is ).", + "asctime": "2023-02-15 07:13:58,302", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Boost timer", + "900", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441638.3025963, + "msecs": 302.5963306427002, + "relativeCreated": 35306.11157417297, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Boost timer): 900 ()", + "asctime": "2023-02-15 07:13:58,302" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Boost timer", + ">", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441638.302769, + "msecs": 302.7689456939697, + "relativeCreated": 35306.28418922424, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Boost timer): result > 0 ()", + "asctime": "2023-02-15 07:13:58,302" + } + ], + "time_consumption": 0.00013685226440429688 + }, + { + "name": "__tLogger__", + "msg": "Setting postconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 145, + "funcName": "__test_boost_mode__", + "created": 1676441638.6041825, + "msecs": 604.1824817657471, + "relativeCreated": 35607.69772529602, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting postconditions (Default setpoint)", + "asctime": "2023-02-15 07:13:58,604", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/set_default_temperature/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441638.303245, + "msecs": 303.24506759643555, + "relativeCreated": 35306.76031112671, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload true", + "asctime": "2023-02-15 07:13:58,303" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.boost_timer", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/boost_timer", + "b'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.3151984, + "msecs": 315.1984214782715, + "relativeCreated": 35318.713665008545, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/boost_timer and payload b'0'", + "asctime": "2023-02-15 07:13:58,315" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.3165739, + "msecs": 316.5738582611084, + "relativeCreated": 35320.08910179138, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:13:58,316" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441638.317062, + "msecs": 317.0619010925293, + "relativeCreated": 35320.5771446228, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:58,317" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.3178225, + "msecs": 317.8224563598633, + "relativeCreated": 35321.33769989014, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:13:58,317" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.3189793, + "msecs": 318.97926330566406, + "relativeCreated": 35322.49450683594, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:58,318" + } + ], + "time_consumption": 0.285203218460083 + }, + { + "name": "__tLogger__", + "msg": "Boost timer is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441638.6048975, + "msecs": 604.8974990844727, + "relativeCreated": 35608.412742614746, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost timer is correct (Content 0 and Type is ).", + "asctime": "2023-02-15 07:13:58,604", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Boost timer", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441638.6046226, + "msecs": 604.6226024627686, + "relativeCreated": 35608.13784599304, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Boost timer): 0 ()", + "asctime": "2023-02-15 07:13:58,604" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Boost timer", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441638.6047754, + "msecs": 604.7754287719727, + "relativeCreated": 35608.290672302246, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Boost timer): result = 0 ()", + "asctime": "2023-02-15 07:13:58,604" + } + ], + "time_consumption": 0.0001220703125 + } + ], + "time_consumption": 0.9065845012664795, + "time_start": "2023-02-15 07:13:57,698", + "time_finished": "2023-02-15 07:13:58,604" + }, + "Default temperature test for device and virtual device: zigbee/ffw/bath/heating_valve": { + "name": "__tLogger__", + "msg": "Default temperature test for device and virtual device: zigbee/ffw/bath/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_default_temperature", + "created": 1676441638.6053698, + "msecs": 605.3698062896729, + "relativeCreated": 35608.885049819946, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Default temperature test for device and virtual device: zigbee/ffw/bath/heating_valve", + "asctime": "2023-02-15 07:13:58,605", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Valve setpoint to %.1f)", + "args": [ + 18 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 60, + "funcName": "__test_default_temperature__", + "created": 1676441638.90698, + "msecs": 906.980037689209, + "relativeCreated": 35910.49528121948, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Valve setpoint to 18.0)", + "asctime": "2023-02-15 07:13:58,906", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441638.605815, + "msecs": 605.8149337768555, + "relativeCreated": 35609.33017730713, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:58,605" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.6071668, + "msecs": 607.1667671203613, + "relativeCreated": 35610.682010650635, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:58,607" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 18}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.6125581, + "msecs": 612.558126449585, + "relativeCreated": 35616.07336997986, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", + "asctime": "2023-02-15 07:13:58,612" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'18'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.612799, + "msecs": 612.7989292144775, + "relativeCreated": 35616.31417274475, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:13:58,612" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/user_temperature_setpoint", + "b'18'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.6552405, + "msecs": 655.240535736084, + "relativeCreated": 35658.75577926636, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:13:58,655" + } + ], + "time_consumption": 0.251739501953125 + }, + { + "name": "__tLogger__", + "msg": "Valve temperature setpoint (is not default temperature) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441638.9076521, + "msecs": 907.6521396636963, + "relativeCreated": 35911.16738319397, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve temperature setpoint (is not default temperature) is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:58,907", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve temperature setpoint (is not default temperature)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441638.9074125, + "msecs": 907.4125289916992, + "relativeCreated": 35910.92777252197, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve temperature setpoint (is not default temperature)): True ()", + "asctime": "2023-02-15 07:13:58,907" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve temperature setpoint (is not default temperature)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441638.9075449, + "msecs": 907.5448513031006, + "relativeCreated": 35911.060094833374, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve temperature setpoint (is not default temperature)): result = True ()", + "asctime": "2023-02-15 07:13:58,907" + } + ], + "time_consumption": 0.00010728836059570312 + }, + { + "name": "__tLogger__", + "msg": "Triggering set to default temperature (%.1f)", + "args": [ + 23 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 66, + "funcName": "__test_default_temperature__", + "created": 1676441639.2090197, + "msecs": 209.01966094970703, + "relativeCreated": 36212.53490447998, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Triggering set to default temperature (23.0)", + "asctime": "2023-02-15 07:13:59,209", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441638.90792, + "msecs": 907.9198837280273, + "relativeCreated": 35911.4351272583, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:13:58,907" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/user_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.9133713, + "msecs": 913.3713245391846, + "relativeCreated": 35916.88656806946, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:13:58,913" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.9140995, + "msecs": 914.0994548797607, + "relativeCreated": 35917.614698410034, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:13:58,914" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441638.9142232, + "msecs": 914.2231941223145, + "relativeCreated": 35917.73843765259, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:58,914" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.914407, + "msecs": 914.4070148468018, + "relativeCreated": 35917.922258377075, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:13:58,914" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441638.9147527, + "msecs": 914.752721786499, + "relativeCreated": 35918.26796531677, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:58,914" + } + ], + "time_consumption": 0.294266939163208 + }, + { + "name": "__tLogger__", + "msg": "Valve temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "23", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441639.2097616, + "msecs": 209.7616195678711, + "relativeCreated": 36213.276863098145, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:13:59,209", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve temperature setpoint", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441639.209482, + "msecs": 209.48195457458496, + "relativeCreated": 36212.99719810486, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:13:59,209" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve temperature setpoint", + "=", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441639.2096376, + "msecs": 209.63764190673828, + "relativeCreated": 36213.15288543701, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:13:59,209" + } + ], + "time_consumption": 0.0001239776611328125 + } + ], + "time_consumption": 0.6043918132781982, + "time_start": "2023-02-15 07:13:58,605", + "time_finished": "2023-02-15 07:13:59,209" + }, + "Summer mode test: zigbee/ffw/bath/heating_valve": { + "name": "__tLogger__", + "msg": "Summer mode test: zigbee/ffw/bath/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "test_summer_mode", + "created": 1676441639.210231, + "msecs": 210.23106575012207, + "relativeCreated": 36213.746309280396, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode test: zigbee/ffw/bath/heating_valve", + "asctime": "2023-02-15 07:13:59,210", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 79, + "funcName": "__test_summer_mode__", + "created": 1676441639.5115104, + "msecs": 511.51037216186523, + "relativeCreated": 36515.02561569214, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Default setpoint)", + "asctime": "2023-02-15 07:13:59,511", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441639.2105737, + "msecs": 210.57367324829102, + "relativeCreated": 36214.088916778564, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:13:59,210" + } + ], + "time_consumption": 0.3009366989135742 + }, + { + "name": "__tLogger__", + "msg": "Summer mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441639.5122619, + "msecs": 512.2618675231934, + "relativeCreated": 36515.77711105347, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:13:59,512", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Summer mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441639.5119417, + "msecs": 511.94167137145996, + "relativeCreated": 36515.45691490173, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Summer mode): False ()", + "asctime": "2023-02-15 07:13:59,511" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Summer mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441639.51213, + "msecs": 512.1300220489502, + "relativeCreated": 36515.64526557922, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Summer mode): result = False ()", + "asctime": "2023-02-15 07:13:59,512" + } + ], + "time_consumption": 0.00013184547424316406 + }, + { + "name": "__tLogger__", + "msg": "Activating summer mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 86, + "funcName": "__test_summer_mode__", + "created": 1676441639.8137057, + "msecs": 813.7056827545166, + "relativeCreated": 36817.22092628479, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Activating summer mode", + "asctime": "2023-02-15 07:13:59,813", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/summer_mode/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441639.512635, + "msecs": 512.6349925994873, + "relativeCreated": 36516.15023612976, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/summer_mode/set and payload true", + "asctime": "2023-02-15 07:13:59,512" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441639.5247812, + "msecs": 524.7812271118164, + "relativeCreated": 36528.29647064209, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 5}'", + "asctime": "2023-02-15 07:13:59,524" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441639.5254157, + "msecs": 525.4156589508057, + "relativeCreated": 36528.93090248108, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:59,525" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441639.5261967, + "msecs": 526.1967182159424, + "relativeCreated": 36529.711961746216, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'5'", + "asctime": "2023-02-15 07:13:59,526" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/summer_mode", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441639.5271778, + "msecs": 527.1778106689453, + "relativeCreated": 36530.69305419922, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'true'", + "asctime": "2023-02-15 07:13:59,527" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441639.5279145, + "msecs": 527.9145240783691, + "relativeCreated": 36531.42976760864, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:59,527" + } + ], + "time_consumption": 0.28579115867614746 + }, + { + "name": "__tLogger__", + "msg": "Summer mode is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441639.814007, + "msecs": 814.007043838501, + "relativeCreated": 36817.522287368774, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:13:59,814", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Summer mode", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441639.8139076, + "msecs": 813.9076232910156, + "relativeCreated": 36817.42286682129, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Summer mode): True ()", + "asctime": "2023-02-15 07:13:59,813" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Summer mode", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441639.813963, + "msecs": 813.9629364013672, + "relativeCreated": 36817.47817993164, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Summer mode): result = True ()", + "asctime": "2023-02-15 07:13:59,813" + } + ], + "time_consumption": 4.410743713378906e-05 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441639.8141718, + "msecs": 814.1717910766602, + "relativeCreated": 36817.68703460693, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:13:59,814", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441639.8140981, + "msecs": 814.0981197357178, + "relativeCreated": 36817.61336326599, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 5 ()", + "asctime": "2023-02-15 07:13:59,814" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441639.814137, + "msecs": 814.1369819641113, + "relativeCreated": 36817.652225494385, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 5 ()", + "asctime": "2023-02-15 07:13:59,814" + } + ], + "time_consumption": 3.4809112548828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Deactivating summer mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__test_summer_mode__", + "created": 1676441640.1148884, + "msecs": 114.88842964172363, + "relativeCreated": 37118.403673172, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Deactivating summer mode", + "asctime": "2023-02-15 07:14:00,114", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/summer_mode/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441639.8142807, + "msecs": 814.2807483673096, + "relativeCreated": 36817.79599189758, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/summer_mode/set and payload false", + "asctime": "2023-02-15 07:13:59,814" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441639.8214056, + "msecs": 821.4056491851807, + "relativeCreated": 36824.920892715454, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:13:59,821" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441639.8216894, + "msecs": 821.6893672943115, + "relativeCreated": 36825.204610824585, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:13:59,821" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441639.8220122, + "msecs": 822.012186050415, + "relativeCreated": 36825.52742958069, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:13:59,822" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/summer_mode", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441639.8223932, + "msecs": 822.3931789398193, + "relativeCreated": 36825.90842247009, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'false'", + "asctime": "2023-02-15 07:13:59,822" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441639.8227465, + "msecs": 822.7465152740479, + "relativeCreated": 36826.26175880432, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:13:59,822" + } + ], + "time_consumption": 0.2921419143676758 + }, + { + "name": "__tLogger__", + "msg": "Summer mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441640.1156096, + "msecs": 115.60964584350586, + "relativeCreated": 37119.12488937378, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:00,115", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Summer mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441640.1153276, + "msecs": 115.32759666442871, + "relativeCreated": 37118.8428401947, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Summer mode): False ()", + "asctime": "2023-02-15 07:14:00,115" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Summer mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441640.1154847, + "msecs": 115.48471450805664, + "relativeCreated": 37118.99995803833, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Summer mode): result = False ()", + "asctime": "2023-02-15 07:14:00,115" + } + ], + "time_consumption": 0.00012493133544921875 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "23", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441640.116069, + "msecs": 116.06907844543457, + "relativeCreated": 37119.58432197571, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:00,116", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441640.1158512, + "msecs": 115.85116386413574, + "relativeCreated": 37119.36640739441, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:14:00,115" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441640.115967, + "msecs": 115.9670352935791, + "relativeCreated": 37119.48227882385, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:14:00,115" + } + ], + "time_consumption": 0.00010204315185546875 + } + ], + "time_consumption": 0.9058380126953125, + "time_start": "2023-02-15 07:13:59,210", + "time_finished": "2023-02-15 07:14:00,116" + }, + "User temperature setpoint test for device and virtual device: zigbee/ffw/bath/heating_valve": { + "name": "__tLogger__", + "msg": "User temperature setpoint test for device and virtual device: zigbee/ffw/bath/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "test_user_temperature_setpoint", + "created": 1676441640.1165478, + "msecs": 116.54782295227051, + "relativeCreated": 37120.063066482544, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "User temperature setpoint test for device and virtual device: zigbee/ffw/bath/heating_valve", + "asctime": "2023-02-15 07:14:00,116", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Changing valve temperature setpoint to '%.1f'", + "args": [ + 18 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 33, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441640.4181085, + "msecs": 418.1084632873535, + "relativeCreated": 37421.62370681763, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing valve temperature setpoint to '18.0'", + "asctime": "2023-02-15 07:14:00,418", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441640.1169515, + "msecs": 116.95146560668945, + "relativeCreated": 37120.46670913696, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:00,116" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.118231, + "msecs": 118.23105812072754, + "relativeCreated": 37121.746301651, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:00,118" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 18}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.123101, + "msecs": 123.10099601745605, + "relativeCreated": 37126.61623954773, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", + "asctime": "2023-02-15 07:14:00,123" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'18'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.1233282, + "msecs": 123.32820892333984, + "relativeCreated": 37126.84345245361, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:00,123" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/user_temperature_setpoint", + "b'18'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.1235418, + "msecs": 123.54183197021484, + "relativeCreated": 37127.05707550049, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:00,123" + } + ], + "time_consumption": 0.29456663131713867 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "18", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441640.4189003, + "msecs": 418.9002513885498, + "relativeCreated": 37422.41549491882, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:14:00,418", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441640.4186132, + "msecs": 418.6131954193115, + "relativeCreated": 37422.128438949585, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 18 ()", + "asctime": "2023-02-15 07:14:00,418" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441640.4187753, + "msecs": 418.7753200531006, + "relativeCreated": 37422.290563583374, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 18 ()", + "asctime": "2023-02-15 07:14:00,418" + } + ], + "time_consumption": 0.00012493133544921875 + }, + { + "name": "__tLogger__", + "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", + "args": [ + "18", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441640.4193058, + "msecs": 419.30580139160156, + "relativeCreated": 37422.821044921875, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device user temperature is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:14:00,419", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device user temperature", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441640.4190946, + "msecs": 419.0945625305176, + "relativeCreated": 37422.60980606079, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device user temperature): 18 ()", + "asctime": "2023-02-15 07:14:00,419" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device user temperature", + "=", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441640.4192066, + "msecs": 419.2066192626953, + "relativeCreated": 37422.72186279297, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device user temperature): result = 18 ()", + "asctime": "2023-02-15 07:14:00,419" + } + ], + "time_consumption": 9.918212890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing videv user temperature setpoint to '%.1f'", + "args": [ + 23 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 41, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441640.7206554, + "msecs": 720.6554412841797, + "relativeCreated": 37724.17068481445, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing videv user temperature setpoint to '23.0'", + "asctime": "2023-02-15 07:14:00,720", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/user_temperature_setpoint/set", + "23" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441640.4196334, + "msecs": 419.6333885192871, + "relativeCreated": 37423.14863204956, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint/set and payload 23", + "asctime": "2023-02-15 07:14:00,419" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.426075, + "msecs": 426.0749816894531, + "relativeCreated": 37429.59022521973, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:14:00,426" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441640.42668, + "msecs": 426.6800880432129, + "relativeCreated": 37430.195331573486, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:00,426" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.4274344, + "msecs": 427.43444442749023, + "relativeCreated": 37430.949687957764, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:00,427" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/user_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.4283428, + "msecs": 428.3428192138672, + "relativeCreated": 37431.85806274414, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:00,428" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.4290936, + "msecs": 429.093599319458, + "relativeCreated": 37432.60884284973, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:00,429" + } + ], + "time_consumption": 0.2915618419647217 + }, + { + "name": "__tLogger__", + "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "23", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441640.7214317, + "msecs": 721.4317321777344, + "relativeCreated": 37724.94697570801, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve device temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:00,721", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve device temperature setpoint", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441640.7211542, + "msecs": 721.1542129516602, + "relativeCreated": 37724.66945648193, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve device temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:14:00,721" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve device temperature setpoint", + "=", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441640.721308, + "msecs": 721.3079929351807, + "relativeCreated": 37724.823236465454, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve device temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:14:00,721" + } + ], + "time_consumption": 0.00012373924255371094 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "23", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441640.7218583, + "msecs": 721.8582630157471, + "relativeCreated": 37725.37350654602, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:00,721", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441640.7216294, + "msecs": 721.6293811798096, + "relativeCreated": 37725.14462471008, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 23 ()", + "asctime": "2023-02-15 07:14:00,721" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441640.7217422, + "msecs": 721.7421531677246, + "relativeCreated": 37725.257396698, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 23 ()", + "asctime": "2023-02-15 07:14:00,721" + } + ], + "time_consumption": 0.00011610984802246094 + }, + { + "name": "__tLogger__", + "msg": "Changing valve temperature setpoint to '%.1f'", + "args": [ + 18 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 33, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441641.0232, + "msecs": 23.200035095214844, + "relativeCreated": 38026.71527862549, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing valve temperature setpoint to '18.0'", + "asctime": "2023-02-15 07:14:01,023", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441640.7222173, + "msecs": 722.217321395874, + "relativeCreated": 37725.73256492615, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:00,722" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.7235527, + "msecs": 723.5527038574219, + "relativeCreated": 37727.067947387695, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:00,723" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 18}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.728413, + "msecs": 728.4131050109863, + "relativeCreated": 37731.92834854126, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", + "asctime": "2023-02-15 07:14:00,728" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'18'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.7290454, + "msecs": 729.0453910827637, + "relativeCreated": 37732.56063461304, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:00,729" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/user_temperature_setpoint", + "b'18'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441640.7292528, + "msecs": 729.252815246582, + "relativeCreated": 37732.768058776855, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:00,729" + } + ], + "time_consumption": 0.2939472198486328 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "18", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441641.0240195, + "msecs": 24.019479751586914, + "relativeCreated": 38027.53472328186, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:14:01,024", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441641.0236914, + "msecs": 23.691415786743164, + "relativeCreated": 38027.20665931702, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 18 ()", + "asctime": "2023-02-15 07:14:01,023" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441641.023888, + "msecs": 23.888111114501953, + "relativeCreated": 38027.403354644775, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 18 ()", + "asctime": "2023-02-15 07:14:01,023" + } + ], + "time_consumption": 0.00013136863708496094 + }, + { + "name": "__tLogger__", + "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", + "args": [ + "18", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441641.024434, + "msecs": 24.43408966064453, + "relativeCreated": 38027.94933319092, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device user temperature is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:14:01,024", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device user temperature", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441641.0242217, + "msecs": 24.22165870666504, + "relativeCreated": 38027.73690223694, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device user temperature): 18 ()", + "asctime": "2023-02-15 07:14:01,024" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device user temperature", + "=", + "18", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441641.0243325, + "msecs": 24.332523345947266, + "relativeCreated": 38027.84776687622, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device user temperature): result = 18 ()", + "asctime": "2023-02-15 07:14:01,024" + } + ], + "time_consumption": 0.00010156631469726562 + }, + { + "name": "__tLogger__", + "msg": "Changing videv user temperature setpoint to '%.1f'", + "args": [ + 23 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 41, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441641.3258622, + "msecs": 325.86216926574707, + "relativeCreated": 38329.37741279602, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing videv user temperature setpoint to '23.0'", + "asctime": "2023-02-15 07:14:01,325", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/user_temperature_setpoint/set", + "23" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441641.0247195, + "msecs": 24.7194766998291, + "relativeCreated": 38028.2347202301, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint/set and payload 23", + "asctime": "2023-02-15 07:14:01,024" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.0310504, + "msecs": 31.050443649291992, + "relativeCreated": 38034.565687179565, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:14:01,031" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441641.0316246, + "msecs": 31.624555587768555, + "relativeCreated": 38035.13979911804, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:01,031" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/valve_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.0324113, + "msecs": 32.41133689880371, + "relativeCreated": 38035.92658042908, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:01,032" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/bath/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.0335827, + "msecs": 33.58268737792969, + "relativeCreated": 38037.0979309082, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:01,033" + }, + { + "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/bath/heating_valve/user_temperature_setpoint", + "b'23'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.0755346, + "msecs": 75.53458213806152, + "relativeCreated": 38079.049825668335, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:01,075" + } + ], + "time_consumption": 0.25032758712768555 + }, + { + "name": "__tLogger__", + "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "23", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441641.3266544, + "msecs": 326.65443420410156, + "relativeCreated": 38330.169677734375, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve device temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:01,326", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve device temperature setpoint", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441641.3263245, + "msecs": 326.324462890625, + "relativeCreated": 38329.8397064209, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve device temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:14:01,326" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve device temperature setpoint", + "=", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441641.326525, + "msecs": 326.5249729156494, + "relativeCreated": 38330.04021644592, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve device temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:14:01,326" + } + ], + "time_consumption": 0.00012946128845214844 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "23", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441641.327057, + "msecs": 327.056884765625, + "relativeCreated": 38330.5721282959, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:01,327", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441641.3268497, + "msecs": 326.84969902038574, + "relativeCreated": 38330.36494255066, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 23 ()", + "asctime": "2023-02-15 07:14:01,326" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "23", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441641.326959, + "msecs": 326.95889472961426, + "relativeCreated": 38330.47413825989, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 23 ()", + "asctime": "2023-02-15 07:14:01,326" + } + ], + "time_consumption": 9.799003601074219e-05 + } + ], + "time_consumption": 1.2105090618133545, + "time_start": "2023-02-15 07:14:00,116", + "time_finished": "2023-02-15 07:14:01,327" + }, + "Brightness test for device and virtual device: zigbee/ffw/julian/main_light": { + "name": "__tLogger__", + "msg": "Brightness test for device and virtual device: zigbee/ffw/julian/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_brightness", + "created": 1676441641.3275821, + "msecs": 327.58212089538574, + "relativeCreated": 38331.09736442566, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness test for device and virtual device: zigbee/ffw/julian/main_light", + "asctime": "2023-02-15 07:14:01,327", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 57, + "funcName": "__test_brightness__", + "created": 1676441641.6295269, + "msecs": 629.5268535614014, + "relativeCreated": 38633.042097091675, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:01,629", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441641.327901, + "msecs": 327.90088653564453, + "relativeCreated": 38331.41613006592, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:01,327" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441641.3286176, + "msecs": 328.6175727844238, + "relativeCreated": 38332.1328163147, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:01,328" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.3298535, + "msecs": 329.8535346984863, + "relativeCreated": 38333.36877822876, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:01,329" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.330754, + "msecs": 330.75404167175293, + "relativeCreated": 38334.26928520203, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:01,330" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.3751874, + "msecs": 375.1873970031738, + "relativeCreated": 38378.70264053345, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:01,375" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.3760347, + "msecs": 376.0347366333008, + "relativeCreated": 38379.549980163574, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:01,376" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.3766968, + "msecs": 376.6968250274658, + "relativeCreated": 38380.21206855774, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:01,376" + } + ], + "time_consumption": 0.25283002853393555 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441641.6302564, + "msecs": 630.2564144134521, + "relativeCreated": 38633.771657943726, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:01,630", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441641.629976, + "msecs": 629.9760341644287, + "relativeCreated": 38633.4912776947, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:01,629" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441641.6301334, + "msecs": 630.1333904266357, + "relativeCreated": 38633.64863395691, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:01,630" + } + ], + "time_consumption": 0.00012302398681640625 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441641.9318705, + "msecs": 931.8704605102539, + "relativeCreated": 38935.38570404053, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:01,931", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441641.6307425, + "msecs": 630.7425498962402, + "relativeCreated": 38634.257793426514, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:01,630" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.6320424, + "msecs": 632.042407989502, + "relativeCreated": 38635.557651519775, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:01,632" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.6345797, + "msecs": 634.5796585083008, + "relativeCreated": 38638.094902038574, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:01,634" + } + ], + "time_consumption": 0.2972908020019531 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441641.9325402, + "msecs": 932.5401782989502, + "relativeCreated": 38936.05542182922, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:01,932", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441641.9322689, + "msecs": 932.2688579559326, + "relativeCreated": 38935.784101486206, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:01,932" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441641.9324353, + "msecs": 932.4352741241455, + "relativeCreated": 38935.95051765442, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:01,932" + } + ], + "time_consumption": 0.0001049041748046875 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441641.932891, + "msecs": 932.8908920288086, + "relativeCreated": 38936.40613555908, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:01,932", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441641.9327118, + "msecs": 932.7118396759033, + "relativeCreated": 38936.22708320618, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:01,932" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441641.9328058, + "msecs": 932.8057765960693, + "relativeCreated": 38936.32102012634, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:01,932" + } + ], + "time_consumption": 8.511543273925781e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441642.2343931, + "msecs": 234.39311981201172, + "relativeCreated": 39237.908363342285, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:02,234", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441641.9331925, + "msecs": 933.1924915313721, + "relativeCreated": 38936.707735061646, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:01,933" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.9361494, + "msecs": 936.1493587493896, + "relativeCreated": 38939.66460227966, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:01,936" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441641.9366512, + "msecs": 936.6512298583984, + "relativeCreated": 38940.16647338867, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:01,936" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.9376926, + "msecs": 937.6926422119141, + "relativeCreated": 38941.20788574219, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:01,937" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441641.9815822, + "msecs": 981.5821647644043, + "relativeCreated": 38985.09740829468, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:01,981" + } + ], + "time_consumption": 0.2528109550476074 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441642.235213, + "msecs": 235.213041305542, + "relativeCreated": 39238.728284835815, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:02,235", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441642.234889, + "msecs": 234.88903045654297, + "relativeCreated": 39238.40427398682, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:02,234" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441642.2350848, + "msecs": 235.08477210998535, + "relativeCreated": 39238.60001564026, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:02,235" + } + ], + "time_consumption": 0.00012826919555664062 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441642.235631, + "msecs": 235.63098907470703, + "relativeCreated": 39239.14623260498, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:02,235", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441642.235419, + "msecs": 235.41903495788574, + "relativeCreated": 39238.93427848816, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:02,235" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441642.23553, + "msecs": 235.52989959716797, + "relativeCreated": 39239.04514312744, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:02,235" + } + ], + "time_consumption": 0.0001010894775390625 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441642.5371702, + "msecs": 537.1701717376709, + "relativeCreated": 39540.685415267944, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:02,537", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441642.2360091, + "msecs": 236.0091209411621, + "relativeCreated": 39239.524364471436, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:02,236" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441642.2373016, + "msecs": 237.30158805847168, + "relativeCreated": 39240.816831588745, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:02,237" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441642.239798, + "msecs": 239.79806900024414, + "relativeCreated": 39243.31331253052, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:02,239" + } + ], + "time_consumption": 0.29737210273742676 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441642.537945, + "msecs": 537.945032119751, + "relativeCreated": 39541.460275650024, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:02,537", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441642.537625, + "msecs": 537.6250743865967, + "relativeCreated": 39541.14031791687, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:02,537" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441642.5377781, + "msecs": 537.7781391143799, + "relativeCreated": 39541.29338264465, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:02,537" + } + ], + "time_consumption": 0.00016689300537109375 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441642.538374, + "msecs": 538.3739471435547, + "relativeCreated": 39541.88919067383, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:02,538", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441642.5381598, + "msecs": 538.1598472595215, + "relativeCreated": 39541.675090789795, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:02,538" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441642.538271, + "msecs": 538.2709503173828, + "relativeCreated": 39541.786193847656, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:02,538" + } + ], + "time_consumption": 0.000102996826171875 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441642.8395808, + "msecs": 839.580774307251, + "relativeCreated": 39843.096017837524, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:02,839", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441642.5387187, + "msecs": 538.7187004089355, + "relativeCreated": 39542.23394393921, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:02,538" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441642.5420253, + "msecs": 542.0253276824951, + "relativeCreated": 39545.54057121277, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:02,542" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441642.542665, + "msecs": 542.6650047302246, + "relativeCreated": 39546.1802482605, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:02,542" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441642.543878, + "msecs": 543.8780784606934, + "relativeCreated": 39547.39332199097, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:02,543" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441642.5868523, + "msecs": 586.8523120880127, + "relativeCreated": 39590.367555618286, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:02,586" + } + ], + "time_consumption": 0.2527284622192383 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441642.8398407, + "msecs": 839.8406505584717, + "relativeCreated": 39843.355894088745, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:02,839", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441642.83976, + "msecs": 839.7600650787354, + "relativeCreated": 39843.27530860901, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:02,839" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441642.8398051, + "msecs": 839.8051261901855, + "relativeCreated": 39843.32036972046, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:02,839" + } + ], + "time_consumption": 3.552436828613281e-05 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "__test_brightness__", + "created": 1676441643.1408348, + "msecs": 140.83480834960938, + "relativeCreated": 40144.35005187988, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:14:03,140", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441642.8399527, + "msecs": 839.9527072906494, + "relativeCreated": 39843.46795082092, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:02,839" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441642.840471, + "msecs": 840.4710292816162, + "relativeCreated": 39843.98627281189, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:02,840" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441642.84132, + "msecs": 841.3200378417969, + "relativeCreated": 39844.83528137207, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:02,841" + } + ], + "time_consumption": 0.2995147705078125 + } + ], + "time_consumption": 1.8132526874542236, + "time_start": "2023-02-15 07:14:01,327", + "time_finished": "2023-02-15 07:14:03,140" + }, + "Color temperature test for device and virtual device: zigbee/ffw/julian/main_light": { + "name": "__tLogger__", + "msg": "Color temperature test for device and virtual device: zigbee/ffw/julian/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 81, + "funcName": "test_color_temp", + "created": 1676441643.1414998, + "msecs": 141.49975776672363, + "relativeCreated": 40145.015001297, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Color temperature test for device and virtual device: zigbee/ffw/julian/main_light", + "asctime": "2023-02-15 07:14:03,141", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 88, + "funcName": "__test_color_temp__", + "created": 1676441643.4434538, + "msecs": 443.4537887573242, + "relativeCreated": 40446.9690322876, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:03,443", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441643.1418052, + "msecs": 141.80517196655273, + "relativeCreated": 40145.320415496826, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:03,141" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441643.1423838, + "msecs": 142.38381385803223, + "relativeCreated": 40145.899057388306, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:03,142" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441643.1434233, + "msecs": 143.42331886291504, + "relativeCreated": 40146.93856239319, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:03,143" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441643.1441984, + "msecs": 144.19841766357422, + "relativeCreated": 40147.71366119385, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:03,144" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441643.1870615, + "msecs": 187.06154823303223, + "relativeCreated": 40190.576791763306, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:03,187" + } + ], + "time_consumption": 0.256392240524292 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441643.4441793, + "msecs": 444.1792964935303, + "relativeCreated": 40447.694540023804, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:03,444", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441643.4438984, + "msecs": 443.89843940734863, + "relativeCreated": 40447.41368293762, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:14:03,443" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441643.444055, + "msecs": 444.05508041381836, + "relativeCreated": 40447.57032394409, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:03,444" + } + ], + "time_consumption": 0.00012421607971191406 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441643.745764, + "msecs": 745.7640171051025, + "relativeCreated": 40749.279260635376, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:14:03,745", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441643.4445918, + "msecs": 444.591760635376, + "relativeCreated": 40448.10700416565, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:03,444" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441643.4459016, + "msecs": 445.90163230895996, + "relativeCreated": 40449.41687583923, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:03,445" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441643.4483557, + "msecs": 448.35567474365234, + "relativeCreated": 40451.870918273926, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:03,448" + } + ], + "time_consumption": 0.2974083423614502 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441643.7465415, + "msecs": 746.5415000915527, + "relativeCreated": 40750.056743621826, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:03,746", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441643.746217, + "msecs": 746.2170124053955, + "relativeCreated": 40749.73225593567, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:14:03,746" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441643.7463713, + "msecs": 746.3712692260742, + "relativeCreated": 40749.88651275635, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:14:03,746" + } + ], + "time_consumption": 0.00017023086547851562 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441643.7470071, + "msecs": 747.0071315765381, + "relativeCreated": 40750.52237510681, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:03,747", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441643.7467904, + "msecs": 746.7904090881348, + "relativeCreated": 40750.30565261841, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:14:03,746" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441643.7469049, + "msecs": 746.9048500061035, + "relativeCreated": 40750.42009353638, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:14:03,746" + } + ], + "time_consumption": 0.00010228157043457031 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441644.048456, + "msecs": 48.45595359802246, + "relativeCreated": 41051.971197128296, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:14:04,048", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441643.7473395, + "msecs": 747.3394870758057, + "relativeCreated": 40750.85473060608, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:03,747" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441643.7506843, + "msecs": 750.6842613220215, + "relativeCreated": 40754.199504852295, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:03,750" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441643.751298, + "msecs": 751.2979507446289, + "relativeCreated": 40754.8131942749, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:03,751" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441643.7525187, + "msecs": 752.5186538696289, + "relativeCreated": 40756.0338973999, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:03,752" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441643.7950947, + "msecs": 795.0947284698486, + "relativeCreated": 40798.60997200012, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:03,795" + } + ], + "time_consumption": 0.25336122512817383 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441644.049097, + "msecs": 49.09706115722656, + "relativeCreated": 41052.6123046875, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:04,049", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441644.0488584, + "msecs": 48.8584041595459, + "relativeCreated": 41052.37364768982, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:14:04,048" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441644.0489902, + "msecs": 48.99024963378906, + "relativeCreated": 41052.50549316406, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:14:04,048" + } + ], + "time_consumption": 0.0001068115234375 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441644.0494883, + "msecs": 49.48830604553223, + "relativeCreated": 41053.003549575806, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:04,049", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441644.0493057, + "msecs": 49.30567741394043, + "relativeCreated": 41052.820920944214, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:14:04,049" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441644.049402, + "msecs": 49.40199851989746, + "relativeCreated": 41052.91724205017, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:04,049" + } + ], + "time_consumption": 8.630752563476562e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441644.3507292, + "msecs": 350.72922706604004, + "relativeCreated": 41354.24447059631, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:14:04,350", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441644.049819, + "msecs": 49.818992614746094, + "relativeCreated": 41053.33423614502, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:04,049" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.0509548, + "msecs": 50.95481872558594, + "relativeCreated": 41054.47006225586, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:04,050" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.0530465, + "msecs": 53.046464920043945, + "relativeCreated": 41056.56170845032, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:04,053" + } + ], + "time_consumption": 0.2976827621459961 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441644.351458, + "msecs": 351.4580726623535, + "relativeCreated": 41354.97331619263, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:04,351", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441644.3511808, + "msecs": 351.1807918548584, + "relativeCreated": 41354.69603538513, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:14:04,351" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441644.3513343, + "msecs": 351.3343334197998, + "relativeCreated": 41354.84957695007, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:14:04,351" + } + ], + "time_consumption": 0.00012373924255371094 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441644.3518672, + "msecs": 351.8671989440918, + "relativeCreated": 41355.382442474365, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:04,351", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441644.3516576, + "msecs": 351.6576290130615, + "relativeCreated": 41355.172872543335, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:14:04,351" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441644.351767, + "msecs": 351.76706314086914, + "relativeCreated": 41355.28230667114, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:14:04,351" + } + ], + "time_consumption": 0.00010013580322265625 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441644.6539147, + "msecs": 653.9146900177002, + "relativeCreated": 41657.42993354797, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:14:04,653", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441644.3521464, + "msecs": 352.1463871002197, + "relativeCreated": 41355.66163063049, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:04,352" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.3561265, + "msecs": 356.1265468597412, + "relativeCreated": 41359.641790390015, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:04,356" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441644.3567169, + "msecs": 356.7168712615967, + "relativeCreated": 41360.23211479187, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:04,356" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.3579204, + "msecs": 357.92040824890137, + "relativeCreated": 41361.435651779175, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:04,357" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.4019895, + "msecs": 401.9894599914551, + "relativeCreated": 41405.50470352173, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:04,401" + } + ], + "time_consumption": 0.2519252300262451 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441644.654686, + "msecs": 654.6859741210938, + "relativeCreated": 41658.20121765137, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:04,654", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441644.6543684, + "msecs": 654.3684005737305, + "relativeCreated": 41657.883644104004, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:14:04,654" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441644.6545546, + "msecs": 654.5546054840088, + "relativeCreated": 41658.06984901428, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:14:04,654" + } + ], + "time_consumption": 0.00013136863708496094 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 105, + "funcName": "__test_color_temp__", + "created": 1676441644.9561565, + "msecs": 956.1564922332764, + "relativeCreated": 41959.67173576355, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:14:04,956", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441644.6549883, + "msecs": 654.9882888793945, + "relativeCreated": 41658.50353240967, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:04,654" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.656345, + "msecs": 656.3448905944824, + "relativeCreated": 41659.860134124756, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:04,656" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.6587627, + "msecs": 658.7626934051514, + "relativeCreated": 41662.277936935425, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:04,658" + } + ], + "time_consumption": 0.297393798828125 + } + ], + "time_consumption": 1.8146567344665527, + "time_start": "2023-02-15 07:14:03,141", + "time_finished": "2023-02-15 07:14:04,956" + }, + "Power On/ Off test for device and virtual device: shellies/ffw/julian/main_light": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: shellies/ffw/julian/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441644.956579, + "msecs": 956.5789699554443, + "relativeCreated": 41960.09421348572, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: shellies/ffw/julian/main_light", + "asctime": "2023-02-15 07:14:04,956", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441644.9568684, + "msecs": 956.8684101104736, + "relativeCreated": 41960.38365364075, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:04,956", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441644.9567268, + "msecs": 956.7267894744873, + "relativeCreated": 41960.24203300476, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:04,956" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441644.9568055, + "msecs": 956.8054676055908, + "relativeCreated": 41960.320711135864, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:04,956" + } + ], + "time_consumption": 6.29425048828125e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441645.2582877, + "msecs": 258.2876682281494, + "relativeCreated": 42261.80291175842, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:05,258", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441644.9570148, + "msecs": 957.014799118042, + "relativeCreated": 41960.530042648315, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:04,957" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441644.957378, + "msecs": 957.3779106140137, + "relativeCreated": 41960.89315414429, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:04,957" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.9580271, + "msecs": 958.0271244049072, + "relativeCreated": 41961.54236793518, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:04,958" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.9584916, + "msecs": 958.4915637969971, + "relativeCreated": 41962.00680732727, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:04,958" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441644.9986777, + "msecs": 998.6777305603027, + "relativeCreated": 42002.192974090576, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:04,998" + } + ], + "time_consumption": 0.2596099376678467 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441645.259061, + "msecs": 259.0610980987549, + "relativeCreated": 42262.57634162903, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:05,259", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441645.2587829, + "msecs": 258.78286361694336, + "relativeCreated": 42262.29810714722, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:05,258" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441645.2589388, + "msecs": 258.9387893676758, + "relativeCreated": 42262.45403289795, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:05,258" + } + ], + "time_consumption": 0.00012230873107910156 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441645.2594657, + "msecs": 259.46569442749023, + "relativeCreated": 42262.980937957764, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:05,259", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441645.2592545, + "msecs": 259.25445556640625, + "relativeCreated": 42262.76969909668, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:05,259" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441645.2593658, + "msecs": 259.3657970428467, + "relativeCreated": 42262.88104057312, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:05,259" + } + ], + "time_consumption": 9.989738464355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441645.5608335, + "msecs": 560.8334541320801, + "relativeCreated": 42564.34869766235, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:05,560", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441645.2598302, + "msecs": 259.8302364349365, + "relativeCreated": 42263.34547996521, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/julian/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:05,259" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441645.2631567, + "msecs": 263.1566524505615, + "relativeCreated": 42266.671895980835, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:05,263" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441645.2636762, + "msecs": 263.6761665344238, + "relativeCreated": 42267.1914100647, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:05,263" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441645.2649465, + "msecs": 264.94646072387695, + "relativeCreated": 42268.46170425415, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:05,264" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441645.309791, + "msecs": 309.79108810424805, + "relativeCreated": 42313.30633163452, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:05,309" + } + ], + "time_consumption": 0.25104236602783203 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441645.5615664, + "msecs": 561.5663528442383, + "relativeCreated": 42565.08159637451, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:05,561", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441645.561292, + "msecs": 561.2919330596924, + "relativeCreated": 42564.807176589966, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:05,561" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441645.561443, + "msecs": 561.4430904388428, + "relativeCreated": 42564.958333969116, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:05,561" + } + ], + "time_consumption": 0.0001232624053955078 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441645.5619783, + "msecs": 561.9783401489258, + "relativeCreated": 42565.4935836792, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:05,561", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441645.5617619, + "msecs": 561.7618560791016, + "relativeCreated": 42565.277099609375, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:05,561" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441645.5618753, + "msecs": 561.8753433227539, + "relativeCreated": 42565.39058685303, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:05,561" + } + ], + "time_consumption": 0.000102996826171875 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441645.8638062, + "msecs": 863.8062477111816, + "relativeCreated": 42867.321491241455, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:05,863", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441645.5622463, + "msecs": 562.2463226318359, + "relativeCreated": 42565.76156616211, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:05,562" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441645.5629504, + "msecs": 562.9503726959229, + "relativeCreated": 42566.465616226196, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:05,562" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441645.5641422, + "msecs": 564.1422271728516, + "relativeCreated": 42567.657470703125, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:05,564" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/julian/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441645.5649936, + "msecs": 564.9936199188232, + "relativeCreated": 42568.5088634491, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:05,564" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441645.6073923, + "msecs": 607.3923110961914, + "relativeCreated": 42610.907554626465, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:05,607" + } + ], + "time_consumption": 0.25641393661499023 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441645.8640487, + "msecs": 864.0487194061279, + "relativeCreated": 42867.5639629364, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:05,864", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441645.8639677, + "msecs": 863.9676570892334, + "relativeCreated": 42867.48290061951, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:05,863" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441645.864004, + "msecs": 864.0038967132568, + "relativeCreated": 42867.51914024353, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:05,864" + } + ], + "time_consumption": 4.482269287109375e-05 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441645.8641722, + "msecs": 864.1722202301025, + "relativeCreated": 42867.687463760376, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:05,864", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441645.8641195, + "msecs": 864.1195297241211, + "relativeCreated": 42867.634773254395, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:05,864" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441645.8641477, + "msecs": 864.1476631164551, + "relativeCreated": 42867.66290664673, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:05,864" + } + ], + "time_consumption": 2.4557113647460938e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441646.1648443, + "msecs": 164.84427452087402, + "relativeCreated": 43168.35951805115, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:06,164", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441645.8642526, + "msecs": 864.2525672912598, + "relativeCreated": 42867.76781082153, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/julian/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:05,864" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441645.8653753, + "msecs": 865.375280380249, + "relativeCreated": 42868.89052391052, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:05,865" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441645.8655357, + "msecs": 865.5357360839844, + "relativeCreated": 42869.05097961426, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:05,865" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/julian/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441645.8658895, + "msecs": 865.8895492553711, + "relativeCreated": 42869.404792785645, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:05,865" + }, + { + "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/julian/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441645.9079082, + "msecs": 907.9082012176514, + "relativeCreated": 42911.423444747925, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:05,907" + } + ], + "time_consumption": 0.25693607330322266 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441646.165624, + "msecs": 165.62390327453613, + "relativeCreated": 43169.13914680481, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:06,165", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441646.1653123, + "msecs": 165.3122901916504, + "relativeCreated": 43168.827533721924, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:06,165" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441646.1654975, + "msecs": 165.4975414276123, + "relativeCreated": 43169.012784957886, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:06,165" + } + ], + "time_consumption": 0.00012636184692382812 + } + ], + "time_consumption": 1.2090449333190918, + "time_start": "2023-02-15 07:14:04,956", + "time_finished": "2023-02-15 07:14:06,165" + }, + "Brightness test for device and virtual device: zigbee/ffw/livingroom/main_light": { + "name": "__tLogger__", + "msg": "Brightness test for device and virtual device: zigbee/ffw/livingroom/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_brightness", + "created": 1676441646.1661606, + "msecs": 166.16058349609375, + "relativeCreated": 43169.67582702637, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness test for device and virtual device: zigbee/ffw/livingroom/main_light", + "asctime": "2023-02-15 07:14:06,166", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 57, + "funcName": "__test_brightness__", + "created": 1676441646.4682283, + "msecs": 468.2283401489258, + "relativeCreated": 43471.7435836792, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:06,468", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441646.1665263, + "msecs": 166.52631759643555, + "relativeCreated": 43170.04156112671, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:06,166" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441646.167204, + "msecs": 167.2039031982422, + "relativeCreated": 43170.719146728516, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:06,167" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.1683269, + "msecs": 168.32685470581055, + "relativeCreated": 43171.842098236084, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:06,168" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.1691608, + "msecs": 169.1608428955078, + "relativeCreated": 43172.67608642578, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:06,169" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.2110844, + "msecs": 211.08436584472656, + "relativeCreated": 43214.599609375, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:06,211" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.2119937, + "msecs": 211.99369430541992, + "relativeCreated": 43215.50893783569, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:06,211" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.212682, + "msecs": 212.68200874328613, + "relativeCreated": 43216.19725227356, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:06,212" + } + ], + "time_consumption": 0.25554633140563965 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441646.46895, + "msecs": 468.9500331878662, + "relativeCreated": 43472.46527671814, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:06,468", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441646.4686756, + "msecs": 468.6756134033203, + "relativeCreated": 43472.190856933594, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:06,468" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441646.4688294, + "msecs": 468.8293933868408, + "relativeCreated": 43472.344636917114, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:06,468" + } + ], + "time_consumption": 0.00012063980102539062 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441646.7705657, + "msecs": 770.5657482147217, + "relativeCreated": 43774.080991744995, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:06,770", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441646.469352, + "msecs": 469.35200691223145, + "relativeCreated": 43472.867250442505, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:06,469" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.4706645, + "msecs": 470.66450119018555, + "relativeCreated": 43474.17974472046, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:06,470" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.4730937, + "msecs": 473.09374809265137, + "relativeCreated": 43476.608991622925, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:06,473" + } + ], + "time_consumption": 0.2974720001220703 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441646.771339, + "msecs": 771.338939666748, + "relativeCreated": 43774.85418319702, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:06,771", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441646.7710469, + "msecs": 771.0468769073486, + "relativeCreated": 43774.56212043762, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:06,771" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441646.771197, + "msecs": 771.1970806121826, + "relativeCreated": 43774.712324142456, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:06,771" + } + ], + "time_consumption": 0.0001418590545654297 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441646.771747, + "msecs": 771.7471122741699, + "relativeCreated": 43775.26235580444, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:06,771", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441646.7715366, + "msecs": 771.5365886688232, + "relativeCreated": 43775.0518321991, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:06,771" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441646.7716472, + "msecs": 771.6472148895264, + "relativeCreated": 43775.1624584198, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:06,771" + } + ], + "time_consumption": 9.989738464355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441647.0731916, + "msecs": 73.19164276123047, + "relativeCreated": 44076.706886291504, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:07,073", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441646.7720733, + "msecs": 772.0732688903809, + "relativeCreated": 43775.588512420654, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:06,772" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.7755034, + "msecs": 775.503396987915, + "relativeCreated": 43779.01864051819, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:06,775" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441646.776094, + "msecs": 776.0939598083496, + "relativeCreated": 43779.60920333862, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:06,776" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.7772844, + "msecs": 777.2843837738037, + "relativeCreated": 43780.79962730408, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:06,777" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441646.822031, + "msecs": 822.0310211181641, + "relativeCreated": 43825.54626464844, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:06,822" + } + ], + "time_consumption": 0.2511606216430664 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441647.073854, + "msecs": 73.85396957397461, + "relativeCreated": 44077.36921310425, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:07,073", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441647.0736194, + "msecs": 73.61936569213867, + "relativeCreated": 44077.13460922241, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:07,073" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441647.073751, + "msecs": 73.75097274780273, + "relativeCreated": 44077.266216278076, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:07,073" + } + ], + "time_consumption": 0.000102996826171875 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441647.0741992, + "msecs": 74.19919967651367, + "relativeCreated": 44077.71444320679, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:07,074", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441647.07402, + "msecs": 74.0199089050293, + "relativeCreated": 44077.5351524353, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:07,074" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441647.0741134, + "msecs": 74.11336898803711, + "relativeCreated": 44077.62861251831, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:07,074" + } + ], + "time_consumption": 8.58306884765625e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441647.3756628, + "msecs": 375.66280364990234, + "relativeCreated": 44379.178047180176, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:07,375", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441647.0745683, + "msecs": 74.56827163696289, + "relativeCreated": 44078.083515167236, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:07,074" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441647.075649, + "msecs": 75.64902305603027, + "relativeCreated": 44079.164266586304, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:07,075" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441647.0777957, + "msecs": 77.79574394226074, + "relativeCreated": 44081.310987472534, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:07,077" + } + ], + "time_consumption": 0.2978670597076416 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441647.3764248, + "msecs": 376.42478942871094, + "relativeCreated": 44379.940032958984, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:07,376", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441647.376115, + "msecs": 376.115083694458, + "relativeCreated": 44379.63032722473, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:07,376" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441647.3762665, + "msecs": 376.2664794921875, + "relativeCreated": 44379.78172302246, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:07,376" + } + ], + "time_consumption": 0.0001583099365234375 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441647.3768466, + "msecs": 376.8465518951416, + "relativeCreated": 44380.361795425415, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:07,376", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441647.376622, + "msecs": 376.62196159362793, + "relativeCreated": 44380.1372051239, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:07,376" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441647.376746, + "msecs": 376.74593925476074, + "relativeCreated": 44380.261182785034, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:07,376" + } + ], + "time_consumption": 0.00010061264038085938 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441647.678272, + "msecs": 678.272008895874, + "relativeCreated": 44681.78725242615, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:07,678", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441647.3771381, + "msecs": 377.1381378173828, + "relativeCreated": 44380.653381347656, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:07,377" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441647.38045, + "msecs": 380.4500102996826, + "relativeCreated": 44383.965253829956, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:07,380" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441647.381016, + "msecs": 381.0160160064697, + "relativeCreated": 44384.53125953674, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:07,381" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441647.382212, + "msecs": 382.21192359924316, + "relativeCreated": 44385.72716712952, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:07,382" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441647.426015, + "msecs": 426.01490020751953, + "relativeCreated": 44429.53014373779, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:07,426" + } + ], + "time_consumption": 0.2522571086883545 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441647.6791005, + "msecs": 679.100513458252, + "relativeCreated": 44682.615756988525, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:07,679", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441647.6788068, + "msecs": 678.8067817687988, + "relativeCreated": 44682.32202529907, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:07,678" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441647.678964, + "msecs": 678.9638996124268, + "relativeCreated": 44682.4791431427, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:07,678" + } + ], + "time_consumption": 0.0001366138458251953 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "__test_brightness__", + "created": 1676441647.9805312, + "msecs": 980.5312156677246, + "relativeCreated": 44984.046459198, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:14:07,980", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441647.679393, + "msecs": 679.3930530548096, + "relativeCreated": 44682.90829658508, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:07,679" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441647.680741, + "msecs": 680.7410717010498, + "relativeCreated": 44684.25631523132, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:07,680" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441647.6831427, + "msecs": 683.1426620483398, + "relativeCreated": 44686.65790557861, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:07,683" + } + ], + "time_consumption": 0.29738855361938477 + } + ], + "time_consumption": 1.8143706321716309, + "time_start": "2023-02-15 07:14:06,166", + "time_finished": "2023-02-15 07:14:07,980" + }, + "Color temperature test for device and virtual device: zigbee/ffw/livingroom/main_light": { + "name": "__tLogger__", + "msg": "Color temperature test for device and virtual device: zigbee/ffw/livingroom/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 81, + "funcName": "test_color_temp", + "created": 1676441647.9808383, + "msecs": 980.8382987976074, + "relativeCreated": 44984.35354232788, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Color temperature test for device and virtual device: zigbee/ffw/livingroom/main_light", + "asctime": "2023-02-15 07:14:07,980", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 88, + "funcName": "__test_color_temp__", + "created": 1676441648.2820904, + "msecs": 282.090425491333, + "relativeCreated": 45285.60566902161, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:08,282", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441647.9809642, + "msecs": 980.964183807373, + "relativeCreated": 44984.47942733765, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:07,980" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441647.9812403, + "msecs": 981.2402725219727, + "relativeCreated": 44984.755516052246, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:07,981" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441647.9817214, + "msecs": 981.7214012145996, + "relativeCreated": 44985.23664474487, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:07,981" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441647.982018, + "msecs": 982.017993927002, + "relativeCreated": 44985.533237457275, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:07,982" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441648.0230665, + "msecs": 23.06652069091797, + "relativeCreated": 45026.58176422119, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:08,023" + } + ], + "time_consumption": 0.25902390480041504 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441648.2828953, + "msecs": 282.8953266143799, + "relativeCreated": 45286.41057014465, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:08,282", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441648.282614, + "msecs": 282.61399269104004, + "relativeCreated": 45286.12923622131, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:14:08,282" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441648.2827735, + "msecs": 282.773494720459, + "relativeCreated": 45286.28873825073, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:08,282" + } + ], + "time_consumption": 0.00012183189392089844 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441648.5844467, + "msecs": 584.4466686248779, + "relativeCreated": 45587.96191215515, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:14:08,584", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441648.2833014, + "msecs": 283.30135345458984, + "relativeCreated": 45286.81659698486, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:08,283" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441648.2845404, + "msecs": 284.54041481018066, + "relativeCreated": 45288.055658340454, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:08,284" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441648.2869904, + "msecs": 286.9904041290283, + "relativeCreated": 45290.5056476593, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:08,286" + } + ], + "time_consumption": 0.2974562644958496 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441648.5851672, + "msecs": 585.1671695709229, + "relativeCreated": 45588.682413101196, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:08,585", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441648.5848975, + "msecs": 584.897518157959, + "relativeCreated": 45588.41276168823, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:14:08,584" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441648.5850477, + "msecs": 585.047721862793, + "relativeCreated": 45588.56296539307, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:14:08,585" + } + ], + "time_consumption": 0.00011944770812988281 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441648.585625, + "msecs": 585.6249332427979, + "relativeCreated": 45589.14017677307, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:08,585", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441648.5854156, + "msecs": 585.4156017303467, + "relativeCreated": 45588.93084526062, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:14:08,585" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441648.585526, + "msecs": 585.5259895324707, + "relativeCreated": 45589.041233062744, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:14:08,585" + } + ], + "time_consumption": 9.894371032714844e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441648.8871121, + "msecs": 887.1121406555176, + "relativeCreated": 45890.62738418579, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:14:08,887", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441648.5859523, + "msecs": 585.9522819519043, + "relativeCreated": 45589.46752548218, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:08,585" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441648.5892882, + "msecs": 589.2882347106934, + "relativeCreated": 45592.80347824097, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:08,589" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441648.5898588, + "msecs": 589.8587703704834, + "relativeCreated": 45593.37401390076, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:08,589" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441648.591076, + "msecs": 591.0758972167969, + "relativeCreated": 45594.59114074707, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:08,591" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441648.6351097, + "msecs": 635.1096630096436, + "relativeCreated": 45638.62490653992, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:08,635" + } + ], + "time_consumption": 0.252002477645874 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441648.8878403, + "msecs": 887.8402709960938, + "relativeCreated": 45891.35551452637, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:08,887", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441648.8875656, + "msecs": 887.5656127929688, + "relativeCreated": 45891.08085632324, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:14:08,887" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441648.8877192, + "msecs": 887.7191543579102, + "relativeCreated": 45891.23439788818, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:14:08,887" + } + ], + "time_consumption": 0.00012111663818359375 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441648.8882391, + "msecs": 888.2391452789307, + "relativeCreated": 45891.754388809204, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:08,888", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441648.8880317, + "msecs": 888.0317211151123, + "relativeCreated": 45891.546964645386, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:14:08,888" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441648.8881404, + "msecs": 888.1404399871826, + "relativeCreated": 45891.655683517456, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:08,888" + } + ], + "time_consumption": 9.870529174804688e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441649.1898036, + "msecs": 189.8036003112793, + "relativeCreated": 46193.31884384155, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:14:09,189", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441648.8886611, + "msecs": 888.6611461639404, + "relativeCreated": 45892.176389694214, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:08,888" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441648.8899314, + "msecs": 889.9314403533936, + "relativeCreated": 45893.44668388367, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:08,889" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441648.8924127, + "msecs": 892.4126625061035, + "relativeCreated": 45895.92790603638, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:08,892" + } + ], + "time_consumption": 0.2973909378051758 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441649.1904576, + "msecs": 190.45758247375488, + "relativeCreated": 46193.97282600403, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:09,190", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441649.1901972, + "msecs": 190.19722938537598, + "relativeCreated": 46193.71247291565, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:14:09,190" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441649.1903265, + "msecs": 190.32645225524902, + "relativeCreated": 46193.84169578552, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:14:09,190" + } + ], + "time_consumption": 0.00013113021850585938 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441649.1908126, + "msecs": 190.8125877380371, + "relativeCreated": 46194.32783126831, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:09,190", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441649.1906364, + "msecs": 190.63639640808105, + "relativeCreated": 46194.151639938354, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:14:09,190" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441649.1907296, + "msecs": 190.72961807250977, + "relativeCreated": 46194.24486160278, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:14:09,190" + } + ], + "time_consumption": 8.296966552734375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441649.492055, + "msecs": 492.05493927001953, + "relativeCreated": 46495.57018280029, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:14:09,492", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441649.1910856, + "msecs": 191.0855770111084, + "relativeCreated": 46194.60082054138, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:09,191" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441649.194384, + "msecs": 194.38409805297852, + "relativeCreated": 46197.89934158325, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:09,194" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441649.1950212, + "msecs": 195.0211524963379, + "relativeCreated": 46198.53639602661, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:09,195" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441649.196206, + "msecs": 196.20609283447266, + "relativeCreated": 46199.721336364746, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:09,196" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441649.2390776, + "msecs": 239.07756805419922, + "relativeCreated": 46242.59281158447, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:09,239" + } + ], + "time_consumption": 0.2529773712158203 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441649.4928544, + "msecs": 492.85435676574707, + "relativeCreated": 46496.36960029602, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:09,492", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441649.4925435, + "msecs": 492.54345893859863, + "relativeCreated": 46496.05870246887, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:14:09,492" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441649.4927163, + "msecs": 492.71631240844727, + "relativeCreated": 46496.23155593872, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:14:09,492" + } + ], + "time_consumption": 0.0001380443572998047 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 105, + "funcName": "__test_color_temp__", + "created": 1676441649.794051, + "msecs": 794.050931930542, + "relativeCreated": 46797.566175460815, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:14:09,794", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441649.4931772, + "msecs": 493.1771755218506, + "relativeCreated": 46496.692419052124, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:09,493" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441649.4946904, + "msecs": 494.6904182434082, + "relativeCreated": 46498.20566177368, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:09,494" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441649.497178, + "msecs": 497.1780776977539, + "relativeCreated": 46500.69332122803, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:09,497" + } + ], + "time_consumption": 0.2968728542327881 + } + ], + "time_consumption": 1.8132126331329346, + "time_start": "2023-02-15 07:14:07,980", + "time_finished": "2023-02-15 07:14:09,794" + }, + "Power On/ Off test for device and virtual device: shellies/ffw/livingroom/main_light": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: shellies/ffw/livingroom/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441649.7944267, + "msecs": 794.426679611206, + "relativeCreated": 46797.94192314148, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: shellies/ffw/livingroom/main_light", + "asctime": "2023-02-15 07:14:09,794", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441649.7946424, + "msecs": 794.642448425293, + "relativeCreated": 46798.15769195557, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:09,794", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441649.794535, + "msecs": 794.5349216461182, + "relativeCreated": 46798.05016517639, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:09,794" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441649.794592, + "msecs": 794.5919036865234, + "relativeCreated": 46798.1071472168, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:09,794" + } + ], + "time_consumption": 5.054473876953125e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441650.0958757, + "msecs": 95.87574005126953, + "relativeCreated": 47099.39098358154, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:10,095", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441649.7947612, + "msecs": 794.7611808776855, + "relativeCreated": 46798.27642440796, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:09,794" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441649.7950468, + "msecs": 795.0468063354492, + "relativeCreated": 46798.56204986572, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:09,795" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441649.7954793, + "msecs": 795.4792976379395, + "relativeCreated": 46798.99454116821, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:09,795" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441649.79575, + "msecs": 795.7499027252197, + "relativeCreated": 46799.26514625549, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:09,795" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441649.8388636, + "msecs": 838.8636112213135, + "relativeCreated": 46842.37885475159, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:09,838" + } + ], + "time_consumption": 0.25701212882995605 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441650.0965111, + "msecs": 96.5111255645752, + "relativeCreated": 47100.02636909485, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:10,096", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441650.0962775, + "msecs": 96.27747535705566, + "relativeCreated": 47099.79271888733, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:10,096" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441650.0964077, + "msecs": 96.40765190124512, + "relativeCreated": 47099.92289543152, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:10,096" + } + ], + "time_consumption": 0.00010347366333007812 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441650.0968862, + "msecs": 96.88615798950195, + "relativeCreated": 47100.401401519775, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:10,096", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441650.0966725, + "msecs": 96.67253494262695, + "relativeCreated": 47100.1877784729, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:10,096" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441650.0967689, + "msecs": 96.76885604858398, + "relativeCreated": 47100.28409957886, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:10,096" + } + ], + "time_consumption": 0.00011730194091796875 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441650.398277, + "msecs": 398.27704429626465, + "relativeCreated": 47401.79228782654, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:10,398", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441650.0971944, + "msecs": 97.19443321228027, + "relativeCreated": 47100.709676742554, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/livingroom/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:10,097" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441650.100579, + "msecs": 100.57902336120605, + "relativeCreated": 47104.09426689148, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:10,100" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441650.1010084, + "msecs": 101.00841522216797, + "relativeCreated": 47104.52365875244, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:10,101" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441650.1021276, + "msecs": 102.1275520324707, + "relativeCreated": 47105.642795562744, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:10,102" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441650.145505, + "msecs": 145.50495147705078, + "relativeCreated": 47149.020195007324, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:10,145" + } + ], + "time_consumption": 0.25277209281921387 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441650.3990843, + "msecs": 399.08432960510254, + "relativeCreated": 47402.599573135376, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:10,399", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441650.398773, + "msecs": 398.7729549407959, + "relativeCreated": 47402.28819847107, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:10,398" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441650.3989594, + "msecs": 398.9593982696533, + "relativeCreated": 47402.47464179993, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:10,398" + } + ], + "time_consumption": 0.00012493133544921875 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441650.399486, + "msecs": 399.4860649108887, + "relativeCreated": 47403.00130844116, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:10,399", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441650.3992798, + "msecs": 399.2798328399658, + "relativeCreated": 47402.79507637024, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:10,399" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441650.3993893, + "msecs": 399.38926696777344, + "relativeCreated": 47402.90451049805, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:10,399" + } + ], + "time_consumption": 9.679794311523438e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441650.701423, + "msecs": 701.422929763794, + "relativeCreated": 47704.93817329407, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:10,701", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441650.3997653, + "msecs": 399.7652530670166, + "relativeCreated": 47403.28049659729, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:10,399" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441650.4003944, + "msecs": 400.3944396972656, + "relativeCreated": 47403.90968322754, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:10,400" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441650.401504, + "msecs": 401.5040397644043, + "relativeCreated": 47405.01928329468, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:10,401" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/livingroom/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441650.4023316, + "msecs": 402.3315906524658, + "relativeCreated": 47405.84683418274, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:10,402" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441650.4434016, + "msecs": 443.401575088501, + "relativeCreated": 47446.916818618774, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:10,443" + } + ], + "time_consumption": 0.25802135467529297 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441650.7021477, + "msecs": 702.1477222442627, + "relativeCreated": 47705.662965774536, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:10,702", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441650.7018807, + "msecs": 701.880693435669, + "relativeCreated": 47705.39593696594, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:10,701" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441650.7020285, + "msecs": 702.0285129547119, + "relativeCreated": 47705.543756484985, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:10,702" + } + ], + "time_consumption": 0.00011920928955078125 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441650.702601, + "msecs": 702.6009559631348, + "relativeCreated": 47706.11619949341, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:10,702", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441650.702337, + "msecs": 702.3370265960693, + "relativeCreated": 47705.85227012634, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:10,702" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441650.7024944, + "msecs": 702.4943828582764, + "relativeCreated": 47706.00962638855, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:10,702" + } + ], + "time_consumption": 0.00010657310485839844 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441651.0037043, + "msecs": 3.7043094635009766, + "relativeCreated": 48007.219552993774, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:11,003", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441650.7029278, + "msecs": 702.927827835083, + "relativeCreated": 47706.44307136536, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/livingroom/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:10,702" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441650.7060862, + "msecs": 706.0861587524414, + "relativeCreated": 47709.601402282715, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:10,706" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441650.7066314, + "msecs": 706.6314220428467, + "relativeCreated": 47710.14666557312, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:10,706" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/livingroom/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441650.7078896, + "msecs": 707.8895568847656, + "relativeCreated": 47711.40480041504, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:10,707" + }, + { + "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/livingroom/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441650.7510917, + "msecs": 751.091718673706, + "relativeCreated": 47754.60696220398, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:10,751" + } + ], + "time_consumption": 0.2526125907897949 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441651.0039647, + "msecs": 3.964662551879883, + "relativeCreated": 48007.47990608215, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:11,003", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441651.0038772, + "msecs": 3.8771629333496094, + "relativeCreated": 48007.39240646362, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:11,003" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441651.0039186, + "msecs": 3.9186477661132812, + "relativeCreated": 48007.43389129639, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:11,003" + } + ], + "time_consumption": 4.601478576660156e-05 + } + ], + "time_consumption": 1.2095379829406738, + "time_start": "2023-02-15 07:14:09,794", + "time_finished": "2023-02-15 07:14:11,003" + }, + "Brightness test for device and virtual device: zigbee/ffw/sleep/main_light": { + "name": "__tLogger__", + "msg": "Brightness test for device and virtual device: zigbee/ffw/sleep/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_brightness", + "created": 1676441651.0041304, + "msecs": 4.130363464355469, + "relativeCreated": 48007.64560699463, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness test for device and virtual device: zigbee/ffw/sleep/main_light", + "asctime": "2023-02-15 07:14:11,004", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 57, + "funcName": "__test_brightness__", + "created": 1676441651.3052657, + "msecs": 305.2656650543213, + "relativeCreated": 48308.780908584595, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:11,305", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441651.0042276, + "msecs": 4.227638244628906, + "relativeCreated": 48007.7428817749, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:11,004" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441651.0044465, + "msecs": 4.446506500244141, + "relativeCreated": 48007.96175003052, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:11,004" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.0048113, + "msecs": 4.811286926269531, + "relativeCreated": 48008.32653045654, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:11,004" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.0050488, + "msecs": 5.0487518310546875, + "relativeCreated": 48008.56399536133, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:11,005" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.0470896, + "msecs": 47.089576721191406, + "relativeCreated": 48050.604820251465, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:11,047" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.0477023, + "msecs": 47.70231246948242, + "relativeCreated": 48051.217555999756, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:11,047" + } + ], + "time_consumption": 0.25756335258483887 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441651.3059957, + "msecs": 305.9957027435303, + "relativeCreated": 48309.510946273804, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:11,305", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441651.305714, + "msecs": 305.7138919830322, + "relativeCreated": 48309.229135513306, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:11,305" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441651.3058708, + "msecs": 305.87077140808105, + "relativeCreated": 48309.386014938354, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:11,305" + } + ], + "time_consumption": 0.00012493133544921875 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441651.6075966, + "msecs": 607.5966358184814, + "relativeCreated": 48611.111879348755, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:11,607", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441651.3063962, + "msecs": 306.3962459564209, + "relativeCreated": 48309.911489486694, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:11,306" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.30779, + "msecs": 307.79004096984863, + "relativeCreated": 48311.30528450012, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:11,307" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.3105671, + "msecs": 310.56714057922363, + "relativeCreated": 48314.0823841095, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:11,310" + } + ], + "time_consumption": 0.2970294952392578 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441651.6083617, + "msecs": 608.3617210388184, + "relativeCreated": 48611.87696456909, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:11,608", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441651.6080859, + "msecs": 608.0858707427979, + "relativeCreated": 48611.60111427307, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:11,608" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441651.6082408, + "msecs": 608.2408428192139, + "relativeCreated": 48611.75608634949, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:11,608" + } + ], + "time_consumption": 0.00012087821960449219 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441651.6087906, + "msecs": 608.7906360626221, + "relativeCreated": 48612.305879592896, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:11,608", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441651.6085563, + "msecs": 608.5562705993652, + "relativeCreated": 48612.07151412964, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:11,608" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441651.6086705, + "msecs": 608.6704730987549, + "relativeCreated": 48612.18571662903, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:11,608" + } + ], + "time_consumption": 0.0001201629638671875 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441651.9102936, + "msecs": 910.2935791015625, + "relativeCreated": 48913.808822631836, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:11,910", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441651.6091433, + "msecs": 609.1432571411133, + "relativeCreated": 48612.65850067139, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:11,609" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.6125557, + "msecs": 612.555742263794, + "relativeCreated": 48616.07098579407, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/sleep/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:11,612" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441651.6134017, + "msecs": 613.4016513824463, + "relativeCreated": 48616.91689491272, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:11,613" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.6147077, + "msecs": 614.7077083587646, + "relativeCreated": 48618.22295188904, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:11,614" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.6578834, + "msecs": 657.8834056854248, + "relativeCreated": 48661.3986492157, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:11,657" + } + ], + "time_consumption": 0.2524101734161377 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441651.9111075, + "msecs": 911.1075401306152, + "relativeCreated": 48914.62278366089, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:11,911", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441651.9108164, + "msecs": 910.8164310455322, + "relativeCreated": 48914.331674575806, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:11,910" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441651.91097, + "msecs": 910.9699726104736, + "relativeCreated": 48914.48521614075, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:11,910" + } + ], + "time_consumption": 0.00013756752014160156 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441651.911513, + "msecs": 911.513090133667, + "relativeCreated": 48915.02833366394, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:11,911", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441651.9113054, + "msecs": 911.3054275512695, + "relativeCreated": 48914.82067108154, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:11,911" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441651.9114158, + "msecs": 911.4158153533936, + "relativeCreated": 48914.93105888367, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:11,911" + } + ], + "time_consumption": 9.72747802734375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441652.213044, + "msecs": 213.0439281463623, + "relativeCreated": 49216.559171676636, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:12,213", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441651.9118881, + "msecs": 911.8881225585938, + "relativeCreated": 48915.40336608887, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:11,911" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.9131918, + "msecs": 913.1917953491211, + "relativeCreated": 48916.707038879395, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:11,913" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441651.915626, + "msecs": 915.626049041748, + "relativeCreated": 48919.14129257202, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:11,915" + } + ], + "time_consumption": 0.29741787910461426 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441652.2137089, + "msecs": 213.70887756347656, + "relativeCreated": 49217.22412109375, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:12,213", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441652.213437, + "msecs": 213.43708038330078, + "relativeCreated": 49216.952323913574, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:12,213" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441652.2135675, + "msecs": 213.56749534606934, + "relativeCreated": 49217.08273887634, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:12,213" + } + ], + "time_consumption": 0.00014138221740722656 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441652.214074, + "msecs": 214.07389640808105, + "relativeCreated": 49217.589139938354, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:12,214", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441652.213887, + "msecs": 213.88697624206543, + "relativeCreated": 49217.40221977234, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:12,213" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441652.2139807, + "msecs": 213.98067474365234, + "relativeCreated": 49217.495918273926, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:12,213" + } + ], + "time_consumption": 9.322166442871094e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441652.5154605, + "msecs": 515.4604911804199, + "relativeCreated": 49518.97573471069, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:12,515", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441652.2143214, + "msecs": 214.32137489318848, + "relativeCreated": 49217.83661842346, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:12,214" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441652.2173316, + "msecs": 217.3316478729248, + "relativeCreated": 49220.8468914032, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/sleep/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:12,217" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441652.218096, + "msecs": 218.0960178375244, + "relativeCreated": 49221.6112613678, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:12,218" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441652.2192192, + "msecs": 219.21920776367188, + "relativeCreated": 49222.734451293945, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:12,219" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441652.2630892, + "msecs": 263.0891799926758, + "relativeCreated": 49266.60442352295, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:12,263" + } + ], + "time_consumption": 0.25237131118774414 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441652.5162368, + "msecs": 516.2367820739746, + "relativeCreated": 49519.75202560425, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:12,516", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441652.515918, + "msecs": 515.9180164337158, + "relativeCreated": 49519.43325996399, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:12,515" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441652.516072, + "msecs": 516.0720348358154, + "relativeCreated": 49519.58727836609, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:12,516" + } + ], + "time_consumption": 0.0001647472381591797 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "__test_brightness__", + "created": 1676441652.8177545, + "msecs": 817.7545070648193, + "relativeCreated": 49821.26975059509, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:14:12,817", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441652.5165312, + "msecs": 516.531229019165, + "relativeCreated": 49520.04647254944, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:12,516" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441652.5179112, + "msecs": 517.9111957550049, + "relativeCreated": 49521.42643928528, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:12,517" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441652.520618, + "msecs": 520.6179618835449, + "relativeCreated": 49524.13320541382, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:12,520" + } + ], + "time_consumption": 0.2971365451812744 + } + ], + "time_consumption": 1.8136241436004639, + "time_start": "2023-02-15 07:14:11,004", + "time_finished": "2023-02-15 07:14:12,817" + }, + "Power On/ Off test for device and virtual device: shellies/ffw/sleep/main_light": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: shellies/ffw/sleep/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441652.8186266, + "msecs": 818.6266422271729, + "relativeCreated": 49822.141885757446, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: shellies/ffw/sleep/main_light", + "asctime": "2023-02-15 07:14:12,818", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441652.819186, + "msecs": 819.1859722137451, + "relativeCreated": 49822.70121574402, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:12,819", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441652.818917, + "msecs": 818.9170360565186, + "relativeCreated": 49822.43227958679, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:12,818" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441652.819065, + "msecs": 819.0650939941406, + "relativeCreated": 49822.580337524414, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:12,819" + } + ], + "time_consumption": 0.00012087821960449219 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441653.121142, + "msecs": 121.14191055297852, + "relativeCreated": 50124.65715408325, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:13,121", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441652.8194976, + "msecs": 819.4975852966309, + "relativeCreated": 49823.012828826904, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:12,819" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441652.8201592, + "msecs": 820.1591968536377, + "relativeCreated": 49823.67444038391, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:12,820" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441652.8213556, + "msecs": 821.3555812835693, + "relativeCreated": 49824.87082481384, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:12,821" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441652.8226979, + "msecs": 822.6978778839111, + "relativeCreated": 49826.213121414185, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:12,822" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441652.8632371, + "msecs": 863.2371425628662, + "relativeCreated": 49866.75238609314, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:12,863" + } + ], + "time_consumption": 0.2579047679901123 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441653.1215608, + "msecs": 121.56081199645996, + "relativeCreated": 50125.07605552673, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:13,121", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441653.1213965, + "msecs": 121.39654159545898, + "relativeCreated": 50124.91178512573, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:13,121" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441653.1214957, + "msecs": 121.49572372436523, + "relativeCreated": 50125.01096725464, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:13,121" + } + ], + "time_consumption": 6.508827209472656e-05 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441653.1217763, + "msecs": 121.77634239196777, + "relativeCreated": 50125.29158592224, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:13,121", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441653.1216612, + "msecs": 121.66118621826172, + "relativeCreated": 50125.176429748535, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:13,121" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441653.121724, + "msecs": 121.72389030456543, + "relativeCreated": 50125.23913383484, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:13,121" + } + ], + "time_consumption": 5.245208740234375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441653.4229295, + "msecs": 422.9295253753662, + "relativeCreated": 50426.44476890564, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:13,422", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441653.1219525, + "msecs": 121.95253372192383, + "relativeCreated": 50125.4677772522, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/sleep/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:13,121" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441653.123824, + "msecs": 123.82388114929199, + "relativeCreated": 50127.339124679565, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:13,123" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441653.1242235, + "msecs": 124.22347068786621, + "relativeCreated": 50127.73871421814, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:13,124" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441653.124941, + "msecs": 124.94111061096191, + "relativeCreated": 50128.456354141235, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:13,124" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441653.169471, + "msecs": 169.47102546691895, + "relativeCreated": 50172.98626899719, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:13,169" + } + ], + "time_consumption": 0.25345849990844727 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441653.423664, + "msecs": 423.6640930175781, + "relativeCreated": 50427.17933654785, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:13,423", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441653.4233866, + "msecs": 423.3865737915039, + "relativeCreated": 50426.90181732178, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:13,423" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441653.42354, + "msecs": 423.5401153564453, + "relativeCreated": 50427.05535888672, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:13,423" + } + ], + "time_consumption": 0.0001239776611328125 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441653.42412, + "msecs": 424.1199493408203, + "relativeCreated": 50427.635192871094, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:13,424", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441653.4239025, + "msecs": 423.9025115966797, + "relativeCreated": 50427.41775512695, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:13,423" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441653.4240172, + "msecs": 424.01719093322754, + "relativeCreated": 50427.5324344635, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:13,424" + } + ], + "time_consumption": 0.00010275840759277344 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441653.7261252, + "msecs": 726.1252403259277, + "relativeCreated": 50729.6404838562, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:13,726", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441653.4243886, + "msecs": 424.3886470794678, + "relativeCreated": 50427.90389060974, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:13,424" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441653.4250555, + "msecs": 425.05550384521484, + "relativeCreated": 50428.57074737549, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:13,425" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441653.4262357, + "msecs": 426.2356758117676, + "relativeCreated": 50429.75091934204, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:13,426" + }, + { + "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/ffw/sleep/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441653.4275334, + "msecs": 427.5333881378174, + "relativeCreated": 50431.04863166809, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:13,427" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441653.4669085, + "msecs": 466.90845489501953, + "relativeCreated": 50470.42369842529, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:13,466" + } + ], + "time_consumption": 0.2592167854309082 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441653.7269437, + "msecs": 726.9437313079834, + "relativeCreated": 50730.45897483826, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:13,726", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441653.7266214, + "msecs": 726.6213893890381, + "relativeCreated": 50730.13663291931, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:13,726" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441653.7267816, + "msecs": 726.7816066741943, + "relativeCreated": 50730.29685020447, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:13,726" + } + ], + "time_consumption": 0.0001621246337890625 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441653.7273648, + "msecs": 727.3647785186768, + "relativeCreated": 50730.88002204895, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:13,727", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441653.7271523, + "msecs": 727.1523475646973, + "relativeCreated": 50730.66759109497, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:13,727" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441653.7272651, + "msecs": 727.2651195526123, + "relativeCreated": 50730.780363082886, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:13,727" + } + ], + "time_consumption": 9.965896606445312e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441654.028794, + "msecs": 28.794050216674805, + "relativeCreated": 51032.30929374695, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:14,028", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441653.7276473, + "msecs": 727.6473045349121, + "relativeCreated": 50731.162548065186, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/ffw/sleep/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:13,727" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0.command", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0/command", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441653.7308278, + "msecs": 730.827808380127, + "relativeCreated": 50734.3430519104, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:13,730" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441653.7316182, + "msecs": 731.6181659698486, + "relativeCreated": 50735.13340950012, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:13,731" + }, + { + "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/ffw/sleep/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441653.7330084, + "msecs": 733.0083847045898, + "relativeCreated": 50736.52362823486, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:13,733" + }, + { + "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/ffw/sleep/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441653.7752342, + "msecs": 775.2342224121094, + "relativeCreated": 50778.74946594238, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:13,775" + } + ], + "time_consumption": 0.25355982780456543 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441654.0296168, + "msecs": 29.616832733154297, + "relativeCreated": 51033.13207626343, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:14,029", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441654.0293055, + "msecs": 29.305458068847656, + "relativeCreated": 51032.82070159912, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:14,029" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441654.0294771, + "msecs": 29.47711944580078, + "relativeCreated": 51032.992362976074, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:14,029" + } + ], + "time_consumption": 0.00013971328735351562 + } + ], + "time_consumption": 1.2109901905059814, + "time_start": "2023-02-15 07:14:12,818", + "time_finished": "2023-02-15 07:14:14,029" + }, + "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/1": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/1", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441654.030209, + "msecs": 30.209064483642578, + "relativeCreated": 51033.724308013916, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/1", + "asctime": "2023-02-15 07:14:14,030", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441654.030763, + "msecs": 30.762910842895508, + "relativeCreated": 51034.27815437317, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:14,030", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441654.0304964, + "msecs": 30.49635887145996, + "relativeCreated": 51034.01160240173, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:14,030" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441654.03064, + "msecs": 30.6398868560791, + "relativeCreated": 51034.15513038635, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:14,030" + } + ], + "time_consumption": 0.00012302398681640625 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441654.3323033, + "msecs": 332.3032855987549, + "relativeCreated": 51335.81852912903, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:14,332", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441654.0311472, + "msecs": 31.147241592407227, + "relativeCreated": 51034.66248512268, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2023-02-15 07:14:14,031" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441654.0324368, + "msecs": 32.43684768676758, + "relativeCreated": 51035.95209121704, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2023-02-15 07:14:14,032" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441654.0353475, + "msecs": 35.34746170043945, + "relativeCreated": 51038.86270523071, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2023-02-15 07:14:14,035" + } + ], + "time_consumption": 0.29695582389831543 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441654.3330739, + "msecs": 333.07385444641113, + "relativeCreated": 51336.589097976685, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:14,333", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441654.332754, + "msecs": 332.75389671325684, + "relativeCreated": 51336.26914024353, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:14,332" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441654.3329499, + "msecs": 332.9498767852783, + "relativeCreated": 51336.46512031555, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:14,332" + } + ], + "time_consumption": 0.0001239776611328125 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441654.3334787, + "msecs": 333.4786891937256, + "relativeCreated": 51336.993932724, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:14,333", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441654.333271, + "msecs": 333.2710266113281, + "relativeCreated": 51336.7862701416, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:14,333" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441654.3333807, + "msecs": 333.38069915771484, + "relativeCreated": 51336.89594268799, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:14,333" + } + ], + "time_consumption": 9.799003601074219e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441654.6346607, + "msecs": 634.6607208251953, + "relativeCreated": 51638.17596435547, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:14,634", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441654.3338156, + "msecs": 333.8155746459961, + "relativeCreated": 51337.33081817627, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/amplifier/state/set and payload false", + "asctime": "2023-02-15 07:14:14,333" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1/set", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441654.3371742, + "msecs": 337.1741771697998, + "relativeCreated": 51340.68942070007, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2023-02-15 07:14:14,337" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441654.3377697, + "msecs": 337.7697467803955, + "relativeCreated": 51341.28499031067, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2023-02-15 07:14:14,337" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441654.3391907, + "msecs": 339.1907215118408, + "relativeCreated": 51342.705965042114, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2023-02-15 07:14:14,339" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441654.4277096, + "msecs": 427.70957946777344, + "relativeCreated": 51431.22482299805, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2023-02-15 07:14:14,427" + } + ], + "time_consumption": 0.20695114135742188 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441654.6354527, + "msecs": 635.4527473449707, + "relativeCreated": 51638.967990875244, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:14,635", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441654.6351607, + "msecs": 635.1606845855713, + "relativeCreated": 51638.675928115845, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:14,635" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441654.6353295, + "msecs": 635.3294849395752, + "relativeCreated": 51638.84472846985, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:14,635" + } + ], + "time_consumption": 0.0001232624053955078 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441654.6358764, + "msecs": 635.8764171600342, + "relativeCreated": 51639.39166069031, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:14,635", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441654.6356492, + "msecs": 635.6492042541504, + "relativeCreated": 51639.164447784424, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:14,635" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441654.6357758, + "msecs": 635.7758045196533, + "relativeCreated": 51639.29104804993, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:14,635" + } + ], + "time_consumption": 0.00010061264038085938 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441654.93719, + "msecs": 937.190055847168, + "relativeCreated": 51940.70529937744, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:14,937", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441654.6361783, + "msecs": 636.1782550811768, + "relativeCreated": 51639.69349861145, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2023-02-15 07:14:14,636" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441654.6374633, + "msecs": 637.4633312225342, + "relativeCreated": 51640.97857475281, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2023-02-15 07:14:14,637" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441654.6404796, + "msecs": 640.479564666748, + "relativeCreated": 51643.99480819702, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2023-02-15 07:14:14,640" + } + ], + "time_consumption": 0.2967104911804199 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441654.9380422, + "msecs": 938.042163848877, + "relativeCreated": 51941.55740737915, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:14,938", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441654.937677, + "msecs": 937.6769065856934, + "relativeCreated": 51941.19215011597, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:14,937" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441654.937846, + "msecs": 937.8459453582764, + "relativeCreated": 51941.36118888855, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:14,937" + } + ], + "time_consumption": 0.00019621849060058594 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441654.9385703, + "msecs": 938.5702610015869, + "relativeCreated": 51942.08550453186, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:14,938", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441654.9382768, + "msecs": 938.2767677307129, + "relativeCreated": 51941.792011260986, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:14,938" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441654.938404, + "msecs": 938.4040832519531, + "relativeCreated": 51941.91932678223, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:14,938" + } + ], + "time_consumption": 0.00016617774963378906 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441655.2398221, + "msecs": 239.8221492767334, + "relativeCreated": 52243.33739280701, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:15,239", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441654.9388843, + "msecs": 938.8842582702637, + "relativeCreated": 51942.39950180054, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/amplifier/state/set and payload false", + "asctime": "2023-02-15 07:14:14,938" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1/set", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441654.9422777, + "msecs": 942.2776699066162, + "relativeCreated": 51945.79291343689, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2023-02-15 07:14:14,942" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441654.9429069, + "msecs": 942.9068565368652, + "relativeCreated": 51946.42210006714, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2023-02-15 07:14:14,942" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441654.9442983, + "msecs": 944.298267364502, + "relativeCreated": 51947.813510894775, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2023-02-15 07:14:14,944" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.031746, + "msecs": 31.74591064453125, + "relativeCreated": 52035.261154174805, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2023-02-15 07:14:15,031" + } + ], + "time_consumption": 0.20807623863220215 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441655.2404912, + "msecs": 240.49115180969238, + "relativeCreated": 52244.006395339966, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:15,240", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441655.2402186, + "msecs": 240.2186393737793, + "relativeCreated": 52243.73388290405, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:15,240" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441655.2403517, + "msecs": 240.35167694091797, + "relativeCreated": 52243.86692047119, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:15,240" + } + ], + "time_consumption": 0.00013947486877441406 + } + ], + "time_consumption": 1.2102820873260498, + "time_start": "2023-02-15 07:14:14,030", + "time_finished": "2023-02-15 07:14:15,240" + }, + "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/3": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/3", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441655.2409544, + "msecs": 240.95439910888672, + "relativeCreated": 52244.46964263916, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/3", + "asctime": "2023-02-15 07:14:15,240", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441655.241352, + "msecs": 241.35208129882812, + "relativeCreated": 52244.8673248291, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:15,241", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441655.2411532, + "msecs": 241.15324020385742, + "relativeCreated": 52244.66848373413, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:15,241" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441655.2412603, + "msecs": 241.26029014587402, + "relativeCreated": 52244.77553367615, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:15,241" + } + ], + "time_consumption": 9.179115295410156e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441655.542599, + "msecs": 542.5989627838135, + "relativeCreated": 52546.11420631409, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:15,542", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441655.2416244, + "msecs": 241.6243553161621, + "relativeCreated": 52245.139598846436, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", + "asctime": "2023-02-15 07:14:15,241" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.2427585, + "msecs": 242.75851249694824, + "relativeCreated": 52246.27375602722, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", + "asctime": "2023-02-15 07:14:15,242" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1/set", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.2452817, + "msecs": 245.28169631958008, + "relativeCreated": 52248.79693984985, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2023-02-15 07:14:15,245" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441655.2454312, + "msecs": 245.43118476867676, + "relativeCreated": 52248.94642829895, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2023-02-15 07:14:15,245" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/cd_player/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.245827, + "msecs": 245.82695960998535, + "relativeCreated": 52249.34220314026, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", + "asctime": "2023-02-15 07:14:15,245" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.2461677, + "msecs": 246.16765975952148, + "relativeCreated": 52249.682903289795, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2023-02-15 07:14:15,246" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.2914212, + "msecs": 291.42117500305176, + "relativeCreated": 52294.936418533325, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2023-02-15 07:14:15,291" + } + ], + "time_consumption": 0.2511777877807617 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441655.5433283, + "msecs": 543.3282852172852, + "relativeCreated": 52546.84352874756, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:15,543", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441655.5430555, + "msecs": 543.055534362793, + "relativeCreated": 52546.57077789307, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:15,543" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441655.5432065, + "msecs": 543.2064533233643, + "relativeCreated": 52546.72169685364, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:15,543" + } + ], + "time_consumption": 0.00012183189392089844 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441655.5437372, + "msecs": 543.7371730804443, + "relativeCreated": 52547.25241661072, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:15,543", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441655.5435266, + "msecs": 543.5266494750977, + "relativeCreated": 52547.04189300537, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:15,543" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441655.5436373, + "msecs": 543.6372756958008, + "relativeCreated": 52547.152519226074, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:15,543" + } + ], + "time_consumption": 9.989738464355469e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441655.844912, + "msecs": 844.912052154541, + "relativeCreated": 52848.427295684814, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:15,844", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/cd_player/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441655.544062, + "msecs": 544.0618991851807, + "relativeCreated": 52547.577142715454, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/cd_player/state/set and payload false", + "asctime": "2023-02-15 07:14:15,544" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3/set", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.5474844, + "msecs": 547.4843978881836, + "relativeCreated": 52550.99964141846, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3/set and payload b'false'", + "asctime": "2023-02-15 07:14:15,547" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441655.5480886, + "msecs": 548.088550567627, + "relativeCreated": 52551.6037940979, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", + "asctime": "2023-02-15 07:14:15,548" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.5494537, + "msecs": 549.4537353515625, + "relativeCreated": 52552.968978881836, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", + "asctime": "2023-02-15 07:14:15,549" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1/set", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.5945852, + "msecs": 594.5851802825928, + "relativeCreated": 52598.100423812866, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2023-02-15 07:14:15,594" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441655.5952864, + "msecs": 595.2863693237305, + "relativeCreated": 52598.801612854004, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2023-02-15 07:14:15,595" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/cd_player/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.5962412, + "msecs": 596.2412357330322, + "relativeCreated": 52599.756479263306, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", + "asctime": "2023-02-15 07:14:15,596" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.597493, + "msecs": 597.4929332733154, + "relativeCreated": 52601.00817680359, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2023-02-15 07:14:15,597" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.6435313, + "msecs": 643.531322479248, + "relativeCreated": 52647.04656600952, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2023-02-15 07:14:15,643" + } + ], + "time_consumption": 0.20138072967529297 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441655.8452008, + "msecs": 845.200777053833, + "relativeCreated": 52848.71602058411, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:15,845", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441655.8451068, + "msecs": 845.106840133667, + "relativeCreated": 52848.62208366394, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:15,845" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441655.8451564, + "msecs": 845.1564311981201, + "relativeCreated": 52848.67167472839, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:15,845" + } + ], + "time_consumption": 4.4345855712890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441655.8453693, + "msecs": 845.3693389892578, + "relativeCreated": 52848.88458251953, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:15,845", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441655.8452985, + "msecs": 845.2985286712646, + "relativeCreated": 52848.81377220154, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:15,845" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441655.8453422, + "msecs": 845.3421592712402, + "relativeCreated": 52848.857402801514, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:15,845" + } + ], + "time_consumption": 2.7179718017578125e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441656.1462958, + "msecs": 146.29578590393066, + "relativeCreated": 53149.811029434204, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:16,146", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441655.845477, + "msecs": 845.4771041870117, + "relativeCreated": 52848.992347717285, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", + "asctime": "2023-02-15 07:14:15,845" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.8458428, + "msecs": 845.8428382873535, + "relativeCreated": 52849.35808181763, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", + "asctime": "2023-02-15 07:14:15,845" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1/set", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.846788, + "msecs": 846.7879295349121, + "relativeCreated": 52850.303173065186, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2023-02-15 07:14:15,846" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441655.8468928, + "msecs": 846.8928337097168, + "relativeCreated": 52850.40807723999, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2023-02-15 07:14:15,846" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/cd_player/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.8470724, + "msecs": 847.0723628997803, + "relativeCreated": 52850.587606430054, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", + "asctime": "2023-02-15 07:14:15,847" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.8473141, + "msecs": 847.3141193389893, + "relativeCreated": 52850.82936286926, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2023-02-15 07:14:15,847" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441655.935569, + "msecs": 935.5690479278564, + "relativeCreated": 52939.08429145813, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2023-02-15 07:14:15,935" + } + ], + "time_consumption": 0.21072673797607422 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441656.14657, + "msecs": 146.56996726989746, + "relativeCreated": 53150.08521080017, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:16,146", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441656.1464899, + "msecs": 146.48985862731934, + "relativeCreated": 53150.00510215759, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:16,146" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441656.1465354, + "msecs": 146.53539657592773, + "relativeCreated": 53150.0506401062, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:16,146" + } + ], + "time_consumption": 3.457069396972656e-05 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441656.1466982, + "msecs": 146.6982364654541, + "relativeCreated": 53150.21347999573, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:16,146", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441656.146624, + "msecs": 146.62408828735352, + "relativeCreated": 53150.13933181763, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:16,146" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441656.146654, + "msecs": 146.6538906097412, + "relativeCreated": 53150.169134140015, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:16,146" + } + ], + "time_consumption": 4.4345855712890625e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441656.4474094, + "msecs": 447.40939140319824, + "relativeCreated": 53450.92463493347, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:16,447", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/cd_player/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441656.1467881, + "msecs": 146.7881202697754, + "relativeCreated": 53150.30336380005, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/cd_player/state/set and payload false", + "asctime": "2023-02-15 07:14:16,146" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3/set", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.1478984, + "msecs": 147.89843559265137, + "relativeCreated": 53151.413679122925, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3/set and payload b'false'", + "asctime": "2023-02-15 07:14:16,147" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441656.1480453, + "msecs": 148.04530143737793, + "relativeCreated": 53151.56054496765, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", + "asctime": "2023-02-15 07:14:16,148" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.1483812, + "msecs": 148.38123321533203, + "relativeCreated": 53151.896476745605, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", + "asctime": "2023-02-15 07:14:16,148" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1/set", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.1935828, + "msecs": 193.58277320861816, + "relativeCreated": 53197.09801673889, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2023-02-15 07:14:16,193" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441656.1939476, + "msecs": 193.94755363464355, + "relativeCreated": 53197.46279716492, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2023-02-15 07:14:16,193" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/cd_player/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.194603, + "msecs": 194.60296630859375, + "relativeCreated": 53198.11820983887, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", + "asctime": "2023-02-15 07:14:16,194" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.1953728, + "msecs": 195.3728199005127, + "relativeCreated": 53198.888063430786, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2023-02-15 07:14:16,195" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.2435067, + "msecs": 243.50666999816895, + "relativeCreated": 53247.02191352844, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2023-02-15 07:14:16,243" + } + ], + "time_consumption": 0.2039027214050293 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441656.448177, + "msecs": 448.1770992279053, + "relativeCreated": 53451.69234275818, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:16,448", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441656.447888, + "msecs": 447.8878974914551, + "relativeCreated": 53451.40314102173, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:16,447" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441656.448052, + "msecs": 448.05192947387695, + "relativeCreated": 53451.56717300415, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:16,448" + } + ], + "time_consumption": 0.0001251697540283203 + } + ], + "time_consumption": 1.2072227001190186, + "time_start": "2023-02-15 07:14:15,240", + "time_finished": "2023-02-15 07:14:16,448" + }, + "Power On/ Off synchronisation test: my_apps/gfw/dirk/powerplug/output/3": { + "name": "__tLogger__", + "msg": "Power On/ Off synchronisation test: my_apps/gfw/dirk/powerplug/output/3", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 24, + "funcName": "test_power_on_off_sync", + "created": 1676441656.4486804, + "msecs": 448.6804008483887, + "relativeCreated": 53452.19564437866, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off synchronisation test: my_apps/gfw/dirk/powerplug/output/3", + "asctime": "2023-02-15 07:14:16,448", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions for master device '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 30, + "funcName": "__test_power_on_off_sync__", + "created": 1676441656.7496142, + "msecs": 749.6142387390137, + "relativeCreated": 53753.12948226929, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions for master device 'False'", + "asctime": "2023-02-15 07:14:16,749", + "moduleLogger": [], + "time_consumption": 0.0 + }, + { + "name": "__tLogger__", + "msg": "Changing master device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off_sync__", + "created": 1676441657.0512307, + "msecs": 51.230669021606445, + "relativeCreated": 54054.74591255188, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device state to 'True'", + "asctime": "2023-02-15 07:14:17,051", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441656.7502224, + "msecs": 750.2224445343018, + "relativeCreated": 53753.737688064575, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", + "asctime": "2023-02-15 07:14:16,750" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.7515268, + "msecs": 751.5268325805664, + "relativeCreated": 53755.04207611084, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", + "asctime": "2023-02-15 07:14:16,751" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1/set", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.754668, + "msecs": 754.6679973602295, + "relativeCreated": 53758.1832408905, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", + "asctime": "2023-02-15 07:14:16,754" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441656.7550783, + "msecs": 755.0783157348633, + "relativeCreated": 53758.59355926514, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", + "asctime": "2023-02-15 07:14:16,755" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/cd_player/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.755887, + "msecs": 755.8870315551758, + "relativeCreated": 53759.40227508545, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", + "asctime": "2023-02-15 07:14:16,755" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.7570417, + "msecs": 757.0416927337646, + "relativeCreated": 53760.55693626404, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", + "asctime": "2023-02-15 07:14:16,757" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441656.803175, + "msecs": 803.1749725341797, + "relativeCreated": 53806.69021606445, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", + "asctime": "2023-02-15 07:14:16,803" + } + ], + "time_consumption": 0.24805569648742676 + }, + { + "name": "__tLogger__", + "msg": "Follower device (my_apps/gfw/dirk/powerplug/output/1) state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441657.0519636, + "msecs": 51.96356773376465, + "relativeCreated": 54055.47881126404, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (my_apps/gfw/dirk/powerplug/output/1) state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:17,051", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (my_apps/gfw/dirk/powerplug/output/1) state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441657.0516858, + "msecs": 51.68581008911133, + "relativeCreated": 54055.201053619385, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (my_apps/gfw/dirk/powerplug/output/1) state): True ()", + "asctime": "2023-02-15 07:14:17,051" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (my_apps/gfw/dirk/powerplug/output/1) state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441657.0518382, + "msecs": 51.83815956115723, + "relativeCreated": 54055.35340309143, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (my_apps/gfw/dirk/powerplug/output/1) state): result = True ()", + "asctime": "2023-02-15 07:14:17,051" + } + ], + "time_consumption": 0.00012540817260742188 + }, + { + "name": "__tLogger__", + "msg": "Changing master device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off_sync__", + "created": 1676441657.3534648, + "msecs": 353.46484184265137, + "relativeCreated": 54356.980085372925, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device state to 'False'", + "asctime": "2023-02-15 07:14:17,353", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441657.0522926, + "msecs": 52.292585372924805, + "relativeCreated": 54055.8078289032, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", + "asctime": "2023-02-15 07:14:17,052" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/3", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.053345, + "msecs": 53.3449649810791, + "relativeCreated": 54056.86020851135, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", + "asctime": "2023-02-15 07:14:17,053" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1/set", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.056614, + "msecs": 56.613922119140625, + "relativeCreated": 54060.129165649414, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", + "asctime": "2023-02-15 07:14:17,056" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441657.0570312, + "msecs": 57.03115463256836, + "relativeCreated": 54060.54639816284, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", + "asctime": "2023-02-15 07:14:17,057" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/cd_player/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.0578933, + "msecs": 57.89327621459961, + "relativeCreated": 54061.40851974487, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", + "asctime": "2023-02-15 07:14:17,057" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/1", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.0590582, + "msecs": 59.058189392089844, + "relativeCreated": 54062.57343292236, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", + "asctime": "2023-02-15 07:14:17,059" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/amplifier/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.1470006, + "msecs": 147.00055122375488, + "relativeCreated": 54150.51579475403, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", + "asctime": "2023-02-15 07:14:17,147" + } + ], + "time_consumption": 0.20646429061889648 + }, + { + "name": "__tLogger__", + "msg": "Follower device (my_apps/gfw/dirk/powerplug/output/1) state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441657.354254, + "msecs": 354.25400733947754, + "relativeCreated": 54357.76925086975, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (my_apps/gfw/dirk/powerplug/output/1) state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:17,354", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (my_apps/gfw/dirk/powerplug/output/1) state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441657.3539622, + "msecs": 353.9621829986572, + "relativeCreated": 54357.47742652893, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (my_apps/gfw/dirk/powerplug/output/1) state): False ()", + "asctime": "2023-02-15 07:14:17,353" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (my_apps/gfw/dirk/powerplug/output/1) state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441657.3541272, + "msecs": 354.1271686553955, + "relativeCreated": 54357.64241218567, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (my_apps/gfw/dirk/powerplug/output/1) state): result = False ()", + "asctime": "2023-02-15 07:14:17,354" + } + ], + "time_consumption": 0.00012683868408203125 + } + ], + "time_consumption": 0.9055736064910889, + "time_start": "2023-02-15 07:14:16,448", + "time_finished": "2023-02-15 07:14:17,354" + }, + "Brightness test for device and virtual device: zigbee/gfw/dirk/desk_light": { + "name": "__tLogger__", + "msg": "Brightness test for device and virtual device: zigbee/gfw/dirk/desk_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_brightness", + "created": 1676441657.3548212, + "msecs": 354.82120513916016, + "relativeCreated": 54358.33644866943, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness test for device and virtual device: zigbee/gfw/dirk/desk_light", + "asctime": "2023-02-15 07:14:17,354", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 57, + "funcName": "__test_brightness__", + "created": 1676441657.6566002, + "msecs": 656.6002368927002, + "relativeCreated": 54660.11548042297, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:17,656", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441657.3551702, + "msecs": 355.17024993896484, + "relativeCreated": 54358.68549346924, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", + "asctime": "2023-02-15 07:14:17,355" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441657.3558526, + "msecs": 355.8526039123535, + "relativeCreated": 54359.36784744263, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:17,355" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.3569422, + "msecs": 356.94217681884766, + "relativeCreated": 54360.45742034912, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", + "asctime": "2023-02-15 07:14:17,356" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.357669, + "msecs": 357.6691150665283, + "relativeCreated": 54361.1843585968, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:17,357" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.403251, + "msecs": 403.25093269348145, + "relativeCreated": 54406.766176223755, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:17,403" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.4040942, + "msecs": 404.0942192077637, + "relativeCreated": 54407.60946273804, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:17,404" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.4047577, + "msecs": 404.7577381134033, + "relativeCreated": 54408.27298164368, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:17,404" + } + ], + "time_consumption": 0.2518424987792969 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441657.6573117, + "msecs": 657.3116779327393, + "relativeCreated": 54660.82692146301, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:17,657", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441657.6570306, + "msecs": 657.0305824279785, + "relativeCreated": 54660.54582595825, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:17,657" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441657.6571877, + "msecs": 657.1877002716064, + "relativeCreated": 54660.70294380188, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:17,657" + } + ], + "time_consumption": 0.0001239776611328125 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441657.9588926, + "msecs": 958.8925838470459, + "relativeCreated": 54962.40782737732, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:17,958", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441657.657737, + "msecs": 657.7370166778564, + "relativeCreated": 54661.25226020813, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:17,657" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.6589978, + "msecs": 658.9977741241455, + "relativeCreated": 54662.51301765442, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:17,658" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.66139, + "msecs": 661.3900661468506, + "relativeCreated": 54664.905309677124, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:17,661" + } + ], + "time_consumption": 0.2975025177001953 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441657.9596214, + "msecs": 959.6214294433594, + "relativeCreated": 54963.13667297363, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:17,959", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441657.9593499, + "msecs": 959.3498706817627, + "relativeCreated": 54962.865114212036, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:17,959" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441657.9595013, + "msecs": 959.5012664794922, + "relativeCreated": 54963.016510009766, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:17,959" + } + ], + "time_consumption": 0.0001201629638671875 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441657.960067, + "msecs": 960.0670337677002, + "relativeCreated": 54963.58227729797, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:17,960", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441657.9598162, + "msecs": 959.8162174224854, + "relativeCreated": 54963.33146095276, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:17,959" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441657.9599273, + "msecs": 959.9273204803467, + "relativeCreated": 54963.44256401062, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:17,959" + } + ], + "time_consumption": 0.00013971328735351562 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441658.2613478, + "msecs": 261.34777069091797, + "relativeCreated": 55264.86301422119, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:18,261", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441657.9604192, + "msecs": 960.4191780090332, + "relativeCreated": 54963.93442153931, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:17,960" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.9637234, + "msecs": 963.7234210968018, + "relativeCreated": 54967.238664627075, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:17,963" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441657.964242, + "msecs": 964.2419815063477, + "relativeCreated": 54967.75722503662, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:17,964" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441657.9653997, + "msecs": 965.3997421264648, + "relativeCreated": 54968.91498565674, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:17,965" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441658.0097783, + "msecs": 9.778261184692383, + "relativeCreated": 55013.293504714966, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:18,009" + } + ], + "time_consumption": 0.2515695095062256 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441658.2620816, + "msecs": 262.0816230773926, + "relativeCreated": 55265.596866607666, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:18,262", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441658.2618053, + "msecs": 261.80529594421387, + "relativeCreated": 55265.32053947449, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:18,261" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441658.2619731, + "msecs": 261.97314262390137, + "relativeCreated": 55265.488386154175, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:18,261" + } + ], + "time_consumption": 0.00010848045349121094 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441658.2625, + "msecs": 262.5000476837158, + "relativeCreated": 55266.01529121399, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:18,262", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441658.262292, + "msecs": 262.29190826416016, + "relativeCreated": 55265.80715179443, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:18,262" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441658.2623878, + "msecs": 262.387752532959, + "relativeCreated": 55265.90299606323, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:18,262" + } + ], + "time_consumption": 0.00011229515075683594 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441658.5639443, + "msecs": 563.9443397521973, + "relativeCreated": 55567.45958328247, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:18,563", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441658.2628217, + "msecs": 262.8216743469238, + "relativeCreated": 55266.3369178772, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:18,262" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441658.2638257, + "msecs": 263.8256549835205, + "relativeCreated": 55267.340898513794, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:18,263" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441658.2659628, + "msecs": 265.9628391265869, + "relativeCreated": 55269.47808265686, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:18,265" + } + ], + "time_consumption": 0.29798150062561035 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441658.5647242, + "msecs": 564.7242069244385, + "relativeCreated": 55568.23945045471, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:18,564", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441658.564393, + "msecs": 564.3930435180664, + "relativeCreated": 55567.90828704834, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:18,564" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441658.564589, + "msecs": 564.5890235900879, + "relativeCreated": 55568.10426712036, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:18,564" + } + ], + "time_consumption": 0.00013518333435058594 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441658.5651455, + "msecs": 565.1454925537109, + "relativeCreated": 55568.660736083984, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:18,565", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441658.564922, + "msecs": 564.9220943450928, + "relativeCreated": 55568.437337875366, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:18,564" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441658.565033, + "msecs": 565.032958984375, + "relativeCreated": 55568.54820251465, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:18,565" + } + ], + "time_consumption": 0.0001125335693359375 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441658.866502, + "msecs": 866.502046585083, + "relativeCreated": 55870.01729011536, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:18,866", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441658.56543, + "msecs": 565.4299259185791, + "relativeCreated": 55568.94516944885, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:18,565" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441658.5685747, + "msecs": 568.5746669769287, + "relativeCreated": 55572.0899105072, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:18,568" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441658.569135, + "msecs": 569.1349506378174, + "relativeCreated": 55572.65019416809, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:18,569" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441658.5703065, + "msecs": 570.3065395355225, + "relativeCreated": 55573.821783065796, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:18,570" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441658.6139405, + "msecs": 613.9404773712158, + "relativeCreated": 55617.45572090149, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:18,613" + } + ], + "time_consumption": 0.2525615692138672 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441658.867281, + "msecs": 867.2809600830078, + "relativeCreated": 55870.79620361328, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:18,867", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441658.866963, + "msecs": 866.9629096984863, + "relativeCreated": 55870.47815322876, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:18,866" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441658.8671598, + "msecs": 867.1598434448242, + "relativeCreated": 55870.6750869751, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:18,867" + } + ], + "time_consumption": 0.00012111663818359375 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "__test_brightness__", + "created": 1676441659.16884, + "msecs": 168.8399314880371, + "relativeCreated": 56172.35517501831, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:14:19,168", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441658.8676105, + "msecs": 867.6104545593262, + "relativeCreated": 55871.1256980896, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", + "asctime": "2023-02-15 07:14:18,867" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441658.8687801, + "msecs": 868.7801361083984, + "relativeCreated": 55872.29537963867, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", + "asctime": "2023-02-15 07:14:18,868" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441658.8737853, + "msecs": 873.7852573394775, + "relativeCreated": 55877.30050086975, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:18,873" + } + ], + "time_consumption": 0.29505467414855957 + } + ], + "time_consumption": 1.814018726348877, + "time_start": "2023-02-15 07:14:17,354", + "time_finished": "2023-02-15 07:14:19,168" + }, + "Color temperature test for device and virtual device: zigbee/gfw/dirk/desk_light": { + "name": "__tLogger__", + "msg": "Color temperature test for device and virtual device: zigbee/gfw/dirk/desk_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 81, + "funcName": "test_color_temp", + "created": 1676441659.1696522, + "msecs": 169.65222358703613, + "relativeCreated": 56173.16746711731, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Color temperature test for device and virtual device: zigbee/gfw/dirk/desk_light", + "asctime": "2023-02-15 07:14:19,169", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 88, + "funcName": "__test_color_temp__", + "created": 1676441659.4718235, + "msecs": 471.82345390319824, + "relativeCreated": 56475.33869743347, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:19,471", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441659.1700542, + "msecs": 170.05419731140137, + "relativeCreated": 56173.569440841675, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", + "asctime": "2023-02-15 07:14:19,170" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441659.1708012, + "msecs": 170.80116271972656, + "relativeCreated": 56174.31640625, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:19,170" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441659.1717498, + "msecs": 171.74983024597168, + "relativeCreated": 56175.265073776245, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", + "asctime": "2023-02-15 07:14:19,171" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441659.1724737, + "msecs": 172.47366905212402, + "relativeCreated": 56175.9889125824, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:19,172" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441659.2190025, + "msecs": 219.00248527526855, + "relativeCreated": 56222.51772880554, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:19,219" + } + ], + "time_consumption": 0.2528209686279297 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441659.4725354, + "msecs": 472.5353717803955, + "relativeCreated": 56476.05061531067, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:19,472", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441659.4722595, + "msecs": 472.259521484375, + "relativeCreated": 56475.77476501465, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:14:19,472" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441659.4724133, + "msecs": 472.4133014678955, + "relativeCreated": 56475.92854499817, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:19,472" + } + ], + "time_consumption": 0.0001220703125 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441659.774186, + "msecs": 774.1858959197998, + "relativeCreated": 56777.70113945007, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:14:19,774", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441659.4729955, + "msecs": 472.9955196380615, + "relativeCreated": 56476.510763168335, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:19,472" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441659.4741611, + "msecs": 474.16114807128906, + "relativeCreated": 56477.67639160156, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:19,474" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441659.4766395, + "msecs": 476.6395092010498, + "relativeCreated": 56480.15475273132, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:19,476" + } + ], + "time_consumption": 0.29754638671875 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441659.7749662, + "msecs": 774.9662399291992, + "relativeCreated": 56778.48148345947, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:19,774", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441659.7746885, + "msecs": 774.6884822845459, + "relativeCreated": 56778.20372581482, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:14:19,774" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441659.7748444, + "msecs": 774.8444080352783, + "relativeCreated": 56778.35965156555, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:14:19,774" + } + ], + "time_consumption": 0.00012183189392089844 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441659.7753797, + "msecs": 775.3796577453613, + "relativeCreated": 56778.894901275635, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:19,775", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441659.7751625, + "msecs": 775.1624584197998, + "relativeCreated": 56778.67770195007, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:14:19,775" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441659.7752774, + "msecs": 775.2773761749268, + "relativeCreated": 56778.7926197052, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:14:19,775" + } + ], + "time_consumption": 0.00010228157043457031 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441660.0766494, + "msecs": 76.64942741394043, + "relativeCreated": 57080.164670944214, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:14:20,076", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441659.7757652, + "msecs": 775.7651805877686, + "relativeCreated": 56779.28042411804, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:19,775" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441659.7789345, + "msecs": 778.9344787597656, + "relativeCreated": 56782.44972229004, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:19,778" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441659.7794542, + "msecs": 779.454231262207, + "relativeCreated": 56782.96947479248, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:19,779" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441659.780575, + "msecs": 780.5750370025635, + "relativeCreated": 56784.09028053284, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:19,780" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441659.8259146, + "msecs": 825.9146213531494, + "relativeCreated": 56829.42986488342, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:19,825" + } + ], + "time_consumption": 0.250734806060791 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441660.07738, + "msecs": 77.37994194030762, + "relativeCreated": 57080.89518547058, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:20,077", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441660.0770893, + "msecs": 77.08930969238281, + "relativeCreated": 57080.604553222656, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:14:20,077" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441660.0772417, + "msecs": 77.24165916442871, + "relativeCreated": 57080.7569026947, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:14:20,077" + } + ], + "time_consumption": 0.00013828277587890625 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441660.0777836, + "msecs": 77.78358459472656, + "relativeCreated": 57081.298828125, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:20,077", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441660.0775738, + "msecs": 77.57377624511719, + "relativeCreated": 57081.08901977539, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:14:20,077" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441660.0776849, + "msecs": 77.68487930297852, + "relativeCreated": 57081.20012283325, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:20,077" + } + ], + "time_consumption": 9.870529174804688e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441660.3793285, + "msecs": 379.32848930358887, + "relativeCreated": 57382.84373283386, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:14:20,379", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441660.07817, + "msecs": 78.1700611114502, + "relativeCreated": 57081.68530464172, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:20,078" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441660.0793347, + "msecs": 79.33473587036133, + "relativeCreated": 57082.849979400635, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:20,079" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441660.0817754, + "msecs": 81.77542686462402, + "relativeCreated": 57085.2906703949, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:20,081" + } + ], + "time_consumption": 0.29755306243896484 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441660.3799987, + "msecs": 379.99868392944336, + "relativeCreated": 57383.51392745972, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:20,379", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441660.379725, + "msecs": 379.72497940063477, + "relativeCreated": 57383.24022293091, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:14:20,379" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441660.3798935, + "msecs": 379.89354133605957, + "relativeCreated": 57383.40878486633, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:14:20,379" + } + ], + "time_consumption": 0.00010514259338378906 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441660.380363, + "msecs": 380.36298751831055, + "relativeCreated": 57383.878231048584, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:20,380", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441660.3801692, + "msecs": 380.169153213501, + "relativeCreated": 57383.684396743774, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:14:20,380" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441660.3802657, + "msecs": 380.2657127380371, + "relativeCreated": 57383.78095626831, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:14:20,380" + } + ], + "time_consumption": 9.72747802734375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441660.6815364, + "msecs": 681.5364360809326, + "relativeCreated": 57685.051679611206, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:14:20,681", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/color_temp/set", + "5" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441660.3806086, + "msecs": 380.60855865478516, + "relativeCreated": 57384.12380218506, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:20,380" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441660.383315, + "msecs": 383.3150863647461, + "relativeCreated": 57386.83032989502, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:20,383" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441660.3842597, + "msecs": 384.2597007751465, + "relativeCreated": 57387.77494430542, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:20,384" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441660.3852396, + "msecs": 385.2396011352539, + "relativeCreated": 57388.75484466553, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:20,385" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441660.429471, + "msecs": 429.4710159301758, + "relativeCreated": 57432.98625946045, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:20,429" + } + ], + "time_consumption": 0.25206542015075684 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441660.682247, + "msecs": 682.2469234466553, + "relativeCreated": 57685.76216697693, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:20,682", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441660.6819735, + "msecs": 681.9734573364258, + "relativeCreated": 57685.4887008667, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:14:20,681" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441660.6821275, + "msecs": 682.1274757385254, + "relativeCreated": 57685.6427192688, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:14:20,682" + } + ], + "time_consumption": 0.00011944770812988281 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 105, + "funcName": "__test_color_temp__", + "created": 1676441660.9838626, + "msecs": 983.8626384735107, + "relativeCreated": 57987.377882003784, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:14:20,983", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441660.682619, + "msecs": 682.6190948486328, + "relativeCreated": 57686.134338378906, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", + "asctime": "2023-02-15 07:14:20,682" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441660.6838093, + "msecs": 683.8092803955078, + "relativeCreated": 57687.32452392578, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", + "asctime": "2023-02-15 07:14:20,683" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441660.6856554, + "msecs": 685.6553554534912, + "relativeCreated": 57689.170598983765, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:20,685" + } + ], + "time_consumption": 0.29820728302001953 + } + ], + "time_consumption": 1.8142104148864746, + "time_start": "2023-02-15 07:14:19,169", + "time_finished": "2023-02-15 07:14:20,983" + }, + "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/2": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/2", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441660.9846106, + "msecs": 984.6105575561523, + "relativeCreated": 57988.125801086426, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/2", + "asctime": "2023-02-15 07:14:20,984", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441660.9851894, + "msecs": 985.1894378662109, + "relativeCreated": 57988.704681396484, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:20,985", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441660.9849257, + "msecs": 984.9257469177246, + "relativeCreated": 57988.440990448, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:20,984" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441660.985072, + "msecs": 985.0718975067139, + "relativeCreated": 57988.58714103699, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:20,985" + } + ], + "time_consumption": 0.00011754035949707031 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441661.286924, + "msecs": 286.923885345459, + "relativeCreated": 58290.43912887573, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:21,286", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441660.9854944, + "msecs": 985.4943752288818, + "relativeCreated": 57989.009618759155, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", + "asctime": "2023-02-15 07:14:20,985" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441660.986132, + "msecs": 986.1319065093994, + "relativeCreated": 57989.64715003967, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:20,986" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441660.9871645, + "msecs": 987.1644973754883, + "relativeCreated": 57990.67974090576, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", + "asctime": "2023-02-15 07:14:20,987" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441660.9878657, + "msecs": 987.865686416626, + "relativeCreated": 57991.3809299469, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:20,987" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.035341, + "msecs": 35.34102439880371, + "relativeCreated": 58038.85626792908, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:21,035" + } + ], + "time_consumption": 0.2515828609466553 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441661.2875466, + "msecs": 287.54663467407227, + "relativeCreated": 58291.061878204346, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:21,287", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441661.2873096, + "msecs": 287.3096466064453, + "relativeCreated": 58290.82489013672, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:21,287" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441661.287442, + "msecs": 287.4419689178467, + "relativeCreated": 58290.95721244812, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:21,287" + } + ], + "time_consumption": 0.00010466575622558594 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441661.2879298, + "msecs": 287.9297733306885, + "relativeCreated": 58291.44501686096, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:21,287", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441661.2877138, + "msecs": 287.71376609802246, + "relativeCreated": 58291.229009628296, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:21,287" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441661.2878082, + "msecs": 287.8081798553467, + "relativeCreated": 58291.32342338562, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:21,287" + } + ], + "time_consumption": 0.00012159347534179688 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441661.5891583, + "msecs": 589.158296585083, + "relativeCreated": 58592.67354011536, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:21,589", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441661.2882125, + "msecs": 288.21253776550293, + "relativeCreated": 58291.72778129578, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false", + "asctime": "2023-02-15 07:14:21,288" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2/set", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.2909336, + "msecs": 290.93360900878906, + "relativeCreated": 58294.44885253906, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2/set and payload b'false'", + "asctime": "2023-02-15 07:14:21,290" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441661.2912958, + "msecs": 291.29576683044434, + "relativeCreated": 58294.81101036072, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", + "asctime": "2023-02-15 07:14:21,291" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.2923048, + "msecs": 292.30475425720215, + "relativeCreated": 58295.819997787476, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", + "asctime": "2023-02-15 07:14:21,292" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.3836157, + "msecs": 383.61573219299316, + "relativeCreated": 58387.13097572327, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:21,383" + } + ], + "time_consumption": 0.20554256439208984 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441661.589956, + "msecs": 589.9560451507568, + "relativeCreated": 58593.47128868103, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:21,589", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441661.5896356, + "msecs": 589.6356105804443, + "relativeCreated": 58593.15085411072, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:21,589" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441661.5897906, + "msecs": 589.7905826568604, + "relativeCreated": 58593.305826187134, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:21,589" + } + ], + "time_consumption": 0.00016546249389648438 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441661.590406, + "msecs": 590.4059410095215, + "relativeCreated": 58593.921184539795, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:21,590", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441661.5901601, + "msecs": 590.1601314544678, + "relativeCreated": 58593.67537498474, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:21,590" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441661.5902917, + "msecs": 590.2917385101318, + "relativeCreated": 58593.806982040405, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:21,590" + } + ], + "time_consumption": 0.00011420249938964844 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441661.8923237, + "msecs": 892.3237323760986, + "relativeCreated": 58895.83897590637, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:21,892", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441661.5907578, + "msecs": 590.7578468322754, + "relativeCreated": 58594.27309036255, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", + "asctime": "2023-02-15 07:14:21,590" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441661.5914078, + "msecs": 591.4077758789062, + "relativeCreated": 58594.92301940918, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:21,591" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.5923984, + "msecs": 592.3984050750732, + "relativeCreated": 58595.91364860535, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", + "asctime": "2023-02-15 07:14:21,592" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/desk_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.5929015, + "msecs": 592.9014682769775, + "relativeCreated": 58596.41671180725, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:21,592" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.6349454, + "msecs": 634.9453926086426, + "relativeCreated": 58638.460636138916, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:21,634" + } + ], + "time_consumption": 0.25737833976745605 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441661.8930435, + "msecs": 893.0435180664062, + "relativeCreated": 58896.55876159668, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:21,893", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441661.8927624, + "msecs": 892.7624225616455, + "relativeCreated": 58896.27766609192, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:21,892" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441661.8929164, + "msecs": 892.9164409637451, + "relativeCreated": 58896.43168449402, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:21,892" + } + ], + "time_consumption": 0.0001270771026611328 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441661.8934882, + "msecs": 893.4881687164307, + "relativeCreated": 58897.003412246704, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:21,893", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441661.8932376, + "msecs": 893.2375907897949, + "relativeCreated": 58896.75283432007, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:21,893" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441661.893346, + "msecs": 893.3460712432861, + "relativeCreated": 58896.86131477356, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:21,893" + } + ], + "time_consumption": 0.00014209747314453125 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441662.1949031, + "msecs": 194.90313529968262, + "relativeCreated": 59198.418378829956, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:22,194", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441661.8937724, + "msecs": 893.7723636627197, + "relativeCreated": 58897.28760719299, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false", + "asctime": "2023-02-15 07:14:21,893" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2/set", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.8968673, + "msecs": 896.8672752380371, + "relativeCreated": 58900.38251876831, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2/set and payload b'false'", + "asctime": "2023-02-15 07:14:21,896" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441661.8972912, + "msecs": 897.2911834716797, + "relativeCreated": 58900.80642700195, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", + "asctime": "2023-02-15 07:14:21,897" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/2", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.8984787, + "msecs": 898.4787464141846, + "relativeCreated": 58901.99398994446, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", + "asctime": "2023-02-15 07:14:21,898" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/desk_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441661.9876735, + "msecs": 987.6735210418701, + "relativeCreated": 58991.18876457214, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:21,987" + } + ], + "time_consumption": 0.2072296142578125 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441662.1956298, + "msecs": 195.62983512878418, + "relativeCreated": 59199.14507865906, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:22,195", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441662.1953595, + "msecs": 195.359468460083, + "relativeCreated": 59198.87471199036, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:22,195" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441662.1955092, + "msecs": 195.5091953277588, + "relativeCreated": 59199.02443885803, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:22,195" + } + ], + "time_consumption": 0.00012063980102539062 + } + ], + "time_consumption": 1.2110192775726318, + "time_start": "2023-02-15 07:14:20,984", + "time_finished": "2023-02-15 07:14:22,195" + }, + "Away mode test: zigbee/gfw/dirk/heating_valve": { + "name": "__tLogger__", + "msg": "Away mode test: zigbee/gfw/dirk/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 101, + "funcName": "test_away_mode", + "created": 1676441662.196222, + "msecs": 196.22206687927246, + "relativeCreated": 59199.737310409546, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode test: zigbee/gfw/dirk/heating_valve", + "asctime": "2023-02-15 07:14:22,196", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 106, + "funcName": "__test_away_mode__", + "created": 1676441662.497546, + "msecs": 497.5459575653076, + "relativeCreated": 59501.06120109558, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Default setpoint)", + "asctime": "2023-02-15 07:14:22,497", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441662.1965947, + "msecs": 196.5947151184082, + "relativeCreated": 59200.10995864868, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:14:22,196" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/user_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.2029235, + "msecs": 202.92353630065918, + "relativeCreated": 59206.43877983093, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:22,202" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.203827, + "msecs": 203.826904296875, + "relativeCreated": 59207.34214782715, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2023-02-15 07:14:22,203" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441662.2042584, + "msecs": 204.25844192504883, + "relativeCreated": 59207.77368545532, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:22,204" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.2050807, + "msecs": 205.08074760437012, + "relativeCreated": 59208.59599113464, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:22,205" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.2061512, + "msecs": 206.15124702453613, + "relativeCreated": 59209.66649055481, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:22,206" + } + ], + "time_consumption": 0.2913947105407715 + }, + { + "name": "__tLogger__", + "msg": "Away mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441662.4981515, + "msecs": 498.1515407562256, + "relativeCreated": 59501.6667842865, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:22,498", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Away mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441662.497915, + "msecs": 497.91502952575684, + "relativeCreated": 59501.43027305603, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Away mode): False ()", + "asctime": "2023-02-15 07:14:22,497" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Away mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441662.498046, + "msecs": 498.0459213256836, + "relativeCreated": 59501.56116485596, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Away mode): result = False ()", + "asctime": "2023-02-15 07:14:22,498" + } + ], + "time_consumption": 0.00010561943054199219 + }, + { + "name": "__tLogger__", + "msg": "Activating away mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 113, + "funcName": "__test_away_mode__", + "created": 1676441662.799436, + "msecs": 799.436092376709, + "relativeCreated": 59802.95133590698, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Activating away mode", + "asctime": "2023-02-15 07:14:22,799", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/away_mode/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441662.498486, + "msecs": 498.4860420227051, + "relativeCreated": 59502.00128555298, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/away_mode/set and payload true", + "asctime": "2023-02-15 07:14:22,498" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.5086603, + "msecs": 508.66031646728516, + "relativeCreated": 59512.17555999756, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2023-02-15 07:14:22,508" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441662.5090816, + "msecs": 509.0816020965576, + "relativeCreated": 59512.59684562683, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:22,509" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.5097973, + "msecs": 509.7973346710205, + "relativeCreated": 59513.312578201294, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2023-02-15 07:14:22,509" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/away_mode", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.5106936, + "msecs": 510.6935501098633, + "relativeCreated": 59514.20879364014, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'true'", + "asctime": "2023-02-15 07:14:22,510" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.5113437, + "msecs": 511.34371757507324, + "relativeCreated": 59514.85896110535, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:22,511" + } + ], + "time_consumption": 0.28809237480163574 + }, + { + "name": "__tLogger__", + "msg": "Away mode is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441662.800146, + "msecs": 800.1461029052734, + "relativeCreated": 59803.66134643555, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:22,800", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Away mode", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441662.7998674, + "msecs": 799.8673915863037, + "relativeCreated": 59803.38263511658, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Away mode): True ()", + "asctime": "2023-02-15 07:14:22,799" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Away mode", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441662.8000221, + "msecs": 800.0221252441406, + "relativeCreated": 59803.537368774414, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Away mode): result = True ()", + "asctime": "2023-02-15 07:14:22,800" + } + ], + "time_consumption": 0.0001239776611328125 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441662.8006012, + "msecs": 800.6012439727783, + "relativeCreated": 59804.11648750305, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 20 and Type is ).", + "asctime": "2023-02-15 07:14:22,800", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441662.8003423, + "msecs": 800.342321395874, + "relativeCreated": 59803.85756492615, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 20 ()", + "asctime": "2023-02-15 07:14:22,800" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441662.8004973, + "msecs": 800.49729347229, + "relativeCreated": 59804.01253700256, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 20 ()", + "asctime": "2023-02-15 07:14:22,800" + } + ], + "time_consumption": 0.00010395050048828125 + }, + { + "name": "__tLogger__", + "msg": "Deactivating away mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 119, + "funcName": "__test_away_mode__", + "created": 1676441663.1017787, + "msecs": 101.77874565124512, + "relativeCreated": 60105.29398918152, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Deactivating away mode", + "asctime": "2023-02-15 07:14:23,101", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/away_mode/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441662.8008964, + "msecs": 800.896406173706, + "relativeCreated": 59804.41164970398, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/away_mode/set and payload false", + "asctime": "2023-02-15 07:14:22,800" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.8137963, + "msecs": 813.7962818145752, + "relativeCreated": 59817.31152534485, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2023-02-15 07:14:22,813" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441662.8144772, + "msecs": 814.4772052764893, + "relativeCreated": 59817.99244880676, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:22,814" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.8153112, + "msecs": 815.3111934661865, + "relativeCreated": 59818.82643699646, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:22,815" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/away_mode", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.8163164, + "msecs": 816.3163661956787, + "relativeCreated": 59819.83160972595, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'false'", + "asctime": "2023-02-15 07:14:22,816" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441662.81709, + "msecs": 817.0900344848633, + "relativeCreated": 59820.60527801514, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:22,817" + } + ], + "time_consumption": 0.28468871116638184 + }, + { + "name": "__tLogger__", + "msg": "Away mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441663.102515, + "msecs": 102.51498222351074, + "relativeCreated": 60106.030225753784, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Away mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:23,102", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Away mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441663.1021996, + "msecs": 102.19955444335938, + "relativeCreated": 60105.71479797363, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Away mode): False ()", + "asctime": "2023-02-15 07:14:23,102" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Away mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441663.1023526, + "msecs": 102.35261917114258, + "relativeCreated": 60105.867862701416, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Away mode): result = False ()", + "asctime": "2023-02-15 07:14:23,102" + } + ], + "time_consumption": 0.00016236305236816406 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441663.1029248, + "msecs": 102.92482376098633, + "relativeCreated": 60106.44006729126, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 25 and Type is ).", + "asctime": "2023-02-15 07:14:23,102", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441663.102713, + "msecs": 102.71310806274414, + "relativeCreated": 60106.22835159302, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 25 ()", + "asctime": "2023-02-15 07:14:23,102" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441663.1028268, + "msecs": 102.82683372497559, + "relativeCreated": 60106.34207725525, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 25 ()", + "asctime": "2023-02-15 07:14:23,102" + } + ], + "time_consumption": 9.799003601074219e-05 + } + ], + "time_consumption": 0.9067027568817139, + "time_start": "2023-02-15 07:14:22,196", + "time_finished": "2023-02-15 07:14:23,102" + }, + "Boost mode test: zigbee/gfw/dirk/heating_valve": { + "name": "__tLogger__", + "msg": "Boost mode test: zigbee/gfw/dirk/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 128, + "funcName": "test_boost_mode", + "created": 1676441663.1033802, + "msecs": 103.38020324707031, + "relativeCreated": 60106.895446777344, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost mode test: zigbee/gfw/dirk/heating_valve", + "asctime": "2023-02-15 07:14:23,103", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 133, + "funcName": "__test_boost_mode__", + "created": 1676441663.404831, + "msecs": 404.8309326171875, + "relativeCreated": 60408.34617614746, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Default setpoint)", + "asctime": "2023-02-15 07:14:23,404", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441663.1036813, + "msecs": 103.68132591247559, + "relativeCreated": 60107.19656944275, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:14:23,103" + } + ], + "time_consumption": 0.3011496067047119 + }, + { + "name": "__tLogger__", + "msg": "Boost timer is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441663.40547, + "msecs": 405.4698944091797, + "relativeCreated": 60408.98513793945, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost timer is correct (Content 0 and Type is ).", + "asctime": "2023-02-15 07:14:23,405", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Boost timer", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441663.405212, + "msecs": 405.2119255065918, + "relativeCreated": 60408.727169036865, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Boost timer): 0 ()", + "asctime": "2023-02-15 07:14:23,405" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Boost timer", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441663.4053583, + "msecs": 405.35831451416016, + "relativeCreated": 60408.87355804443, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Boost timer): result = 0 ()", + "asctime": "2023-02-15 07:14:23,405" + } + ], + "time_consumption": 0.00011157989501953125 + }, + { + "name": "__tLogger__", + "msg": "Activating boost mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 140, + "funcName": "__test_boost_mode__", + "created": 1676441663.7067063, + "msecs": 706.7062854766846, + "relativeCreated": 60710.22152900696, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Activating boost mode", + "asctime": "2023-02-15 07:14:23,706", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.start_boost.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/start_boost/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441663.4058273, + "msecs": 405.82728385925293, + "relativeCreated": 60409.34252738953, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/start_boost/set and payload true", + "asctime": "2023-02-15 07:14:23,405" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.boost_timer", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/boost_timer", + "b'900'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441663.4182577, + "msecs": 418.2577133178711, + "relativeCreated": 60421.772956848145, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/boost_timer and payload b'900'", + "asctime": "2023-02-15 07:14:23,418" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 30}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441663.4190876, + "msecs": 419.08764839172363, + "relativeCreated": 60422.602891922, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2023-02-15 07:14:23,419" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441663.4194803, + "msecs": 419.4803237915039, + "relativeCreated": 60422.99556732178, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:23,419" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'30'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441663.4201915, + "msecs": 420.19152641296387, + "relativeCreated": 60423.70676994324, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2023-02-15 07:14:23,420" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441663.4212196, + "msecs": 421.2195873260498, + "relativeCreated": 60424.73483085632, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:23,421" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.boost_timer", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/boost_timer", + "b'899'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441663.640006, + "msecs": 640.0060653686523, + "relativeCreated": 60643.521308898926, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/boost_timer and payload b'899'", + "asctime": "2023-02-15 07:14:23,640" + } + ], + "time_consumption": 0.06670022010803223 + }, + { + "name": "__tLogger__", + "msg": "Boost timer is greater expectation (Content %s and Type is %s).", + "args": [ + "899", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 230, + "funcName": "greater_chk", + "created": 1676441663.707408, + "msecs": 707.4079513549805, + "relativeCreated": 60710.923194885254, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost timer is greater expectation (Content 899 and Type is ).", + "asctime": "2023-02-15 07:14:23,707", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Boost timer", + "899", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441663.7071307, + "msecs": 707.1306705474854, + "relativeCreated": 60710.64591407776, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Boost timer): 899 ()", + "asctime": "2023-02-15 07:14:23,707" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Boost timer", + ">", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441663.7072854, + "msecs": 707.2854042053223, + "relativeCreated": 60710.800647735596, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Boost timer): result > 0 ()", + "asctime": "2023-02-15 07:14:23,707" + } + ], + "time_consumption": 0.00012254714965820312 + }, + { + "name": "__tLogger__", + "msg": "Setting postconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 145, + "funcName": "__test_boost_mode__", + "created": 1676441664.008775, + "msecs": 8.774995803833008, + "relativeCreated": 61012.29023933411, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting postconditions (Default setpoint)", + "asctime": "2023-02-15 07:14:24,008", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/set_default_temperature/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441663.707707, + "msecs": 707.7069282531738, + "relativeCreated": 60711.22217178345, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload true", + "asctime": "2023-02-15 07:14:23,707" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.boost_timer", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/boost_timer", + "b'0'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441663.7198203, + "msecs": 719.8202610015869, + "relativeCreated": 60723.33550453186, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/boost_timer and payload b'0'", + "asctime": "2023-02-15 07:14:23,719" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441663.7207446, + "msecs": 720.7446098327637, + "relativeCreated": 60724.25985336304, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2023-02-15 07:14:23,720" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441663.7212024, + "msecs": 721.2023735046387, + "relativeCreated": 60724.71761703491, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:23,721" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441663.7220154, + "msecs": 722.015380859375, + "relativeCreated": 60725.53062438965, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:23,722" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441663.723205, + "msecs": 723.2050895690918, + "relativeCreated": 60726.720333099365, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:23,723" + } + ], + "time_consumption": 0.2855699062347412 + }, + { + "name": "__tLogger__", + "msg": "Boost timer is correct (Content %s and Type is %s).", + "args": [ + "0", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441664.009554, + "msecs": 9.553909301757812, + "relativeCreated": 61013.06915283203, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Boost timer is correct (Content 0 and Type is ).", + "asctime": "2023-02-15 07:14:24,009", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Boost timer", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441664.0092137, + "msecs": 9.213685989379883, + "relativeCreated": 61012.72892951965, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Boost timer): 0 ()", + "asctime": "2023-02-15 07:14:24,009" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Boost timer", + "=", + "0", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441664.009414, + "msecs": 9.413957595825195, + "relativeCreated": 61012.9292011261, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Boost timer): result = 0 ()", + "asctime": "2023-02-15 07:14:24,009" + } + ], + "time_consumption": 0.0001399517059326172 + } + ], + "time_consumption": 0.9061737060546875, + "time_start": "2023-02-15 07:14:23,103", + "time_finished": "2023-02-15 07:14:24,009" + }, + "Default temperature test for device and virtual device: zigbee/gfw/dirk/heating_valve": { + "name": "__tLogger__", + "msg": "Default temperature test for device and virtual device: zigbee/gfw/dirk/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_default_temperature", + "created": 1676441664.0100858, + "msecs": 10.085821151733398, + "relativeCreated": 61013.60106468201, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Default temperature test for device and virtual device: zigbee/gfw/dirk/heating_valve", + "asctime": "2023-02-15 07:14:24,010", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Valve setpoint to %.1f)", + "args": [ + 20 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 60, + "funcName": "__test_default_temperature__", + "created": 1676441664.3114452, + "msecs": 311.4452362060547, + "relativeCreated": 61314.96047973633, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Valve setpoint to 20.0)", + "asctime": "2023-02-15 07:14:24,311", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441664.0106428, + "msecs": 10.642766952514648, + "relativeCreated": 61014.15801048279, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:24,010" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.0119236, + "msecs": 11.923551559448242, + "relativeCreated": 61015.43879508972, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:24,011" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.0171921, + "msecs": 17.19212532043457, + "relativeCreated": 61020.70736885071, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2023-02-15 07:14:24,017" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.0175045, + "msecs": 17.504453659057617, + "relativeCreated": 61021.01969718933, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2023-02-15 07:14:24,017" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.0177243, + "msecs": 17.724275588989258, + "relativeCreated": 61021.23951911926, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2023-02-15 07:14:24,017" + } + ], + "time_consumption": 0.29372096061706543 + }, + { + "name": "__tLogger__", + "msg": "Valve temperature setpoint (is not default temperature) is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441664.311678, + "msecs": 311.6779327392578, + "relativeCreated": 61315.19317626953, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve temperature setpoint (is not default temperature) is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:24,311", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve temperature setpoint (is not default temperature)", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441664.3116124, + "msecs": 311.6123676300049, + "relativeCreated": 61315.12761116028, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve temperature setpoint (is not default temperature)): True ()", + "asctime": "2023-02-15 07:14:24,311" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve temperature setpoint (is not default temperature)", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441664.3116486, + "msecs": 311.6486072540283, + "relativeCreated": 61315.1638507843, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve temperature setpoint (is not default temperature)): result = True ()", + "asctime": "2023-02-15 07:14:24,311" + } + ], + "time_consumption": 2.9325485229492188e-05 + }, + { + "name": "__tLogger__", + "msg": "Triggering set to default temperature (%.1f)", + "args": [ + 25 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 66, + "funcName": "__test_default_temperature__", + "created": 1676441664.6123798, + "msecs": 612.379789352417, + "relativeCreated": 61615.89503288269, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Triggering set to default temperature (25.0)", + "asctime": "2023-02-15 07:14:24,612", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441664.3117597, + "msecs": 311.75971031188965, + "relativeCreated": 61315.27495384216, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:14:24,311" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/user_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.313448, + "msecs": 313.4479522705078, + "relativeCreated": 61316.96319580078, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:24,313" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.3550422, + "msecs": 355.0422191619873, + "relativeCreated": 61358.55746269226, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2023-02-15 07:14:24,355" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441664.3553395, + "msecs": 355.33952713012695, + "relativeCreated": 61358.8547706604, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:24,355" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.3557775, + "msecs": 355.7775020599365, + "relativeCreated": 61359.29274559021, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:24,355" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.3563619, + "msecs": 356.36186599731445, + "relativeCreated": 61359.87710952759, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:24,356" + } + ], + "time_consumption": 0.25601792335510254 + }, + { + "name": "__tLogger__", + "msg": "Valve temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441664.6131208, + "msecs": 613.1207942962646, + "relativeCreated": 61616.63603782654, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve temperature setpoint is correct (Content 25 and Type is ).", + "asctime": "2023-02-15 07:14:24,613", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve temperature setpoint", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441664.6128423, + "msecs": 612.842321395874, + "relativeCreated": 61616.35756492615, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve temperature setpoint): 25 ()", + "asctime": "2023-02-15 07:14:24,612" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve temperature setpoint", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441664.6129963, + "msecs": 612.9963397979736, + "relativeCreated": 61616.51158332825, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve temperature setpoint): result = 25 ()", + "asctime": "2023-02-15 07:14:24,612" + } + ], + "time_consumption": 0.00012445449829101562 + } + ], + "time_consumption": 0.6030349731445312, + "time_start": "2023-02-15 07:14:24,010", + "time_finished": "2023-02-15 07:14:24,613" + }, + "Summer mode test: zigbee/gfw/dirk/heating_valve": { + "name": "__tLogger__", + "msg": "Summer mode test: zigbee/gfw/dirk/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "test_summer_mode", + "created": 1676441664.6135857, + "msecs": 613.5857105255127, + "relativeCreated": 61617.100954055786, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode test: zigbee/gfw/dirk/heating_valve", + "asctime": "2023-02-15 07:14:24,613", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Default setpoint)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 79, + "funcName": "__test_summer_mode__", + "created": 1676441664.9147394, + "msecs": 914.7393703460693, + "relativeCreated": 61918.25461387634, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Default setpoint)", + "asctime": "2023-02-15 07:14:24,914", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/set_default_temperature/set", + "null" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441664.613894, + "msecs": 613.893985748291, + "relativeCreated": 61617.409229278564, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:14:24,613" + } + ], + "time_consumption": 0.3008453845977783 + }, + { + "name": "__tLogger__", + "msg": "Summer mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441664.9154437, + "msecs": 915.4436588287354, + "relativeCreated": 61918.95890235901, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:24,915", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Summer mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441664.9151688, + "msecs": 915.1687622070312, + "relativeCreated": 61918.684005737305, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Summer mode): False ()", + "asctime": "2023-02-15 07:14:24,915" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Summer mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441664.9153225, + "msecs": 915.3225421905518, + "relativeCreated": 61918.837785720825, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Summer mode): result = False ()", + "asctime": "2023-02-15 07:14:24,915" + } + ], + "time_consumption": 0.00012111663818359375 + }, + { + "name": "__tLogger__", + "msg": "Activating summer mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 86, + "funcName": "__test_summer_mode__", + "created": 1676441665.216922, + "msecs": 216.92204475402832, + "relativeCreated": 62220.4372882843, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Activating summer mode", + "asctime": "2023-02-15 07:14:25,216", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/summer_mode/set", + "true" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441664.9158132, + "msecs": 915.8132076263428, + "relativeCreated": 61919.328451156616, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/summer_mode/set and payload true", + "asctime": "2023-02-15 07:14:24,915" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 5}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.9287884, + "msecs": 928.788423538208, + "relativeCreated": 61932.30366706848, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 5}'", + "asctime": "2023-02-15 07:14:24,928" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441664.9293802, + "msecs": 929.3801784515381, + "relativeCreated": 61932.89542198181, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:24,929" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.9302294, + "msecs": 930.2294254302979, + "relativeCreated": 61933.74466896057, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'5'", + "asctime": "2023-02-15 07:14:24,930" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/summer_mode", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.9312153, + "msecs": 931.2152862548828, + "relativeCreated": 61934.730529785156, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'true'", + "asctime": "2023-02-15 07:14:24,931" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441664.9319873, + "msecs": 931.9872856140137, + "relativeCreated": 61935.50252914429, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:24,931" + } + ], + "time_consumption": 0.28493475914001465 + }, + { + "name": "__tLogger__", + "msg": "Summer mode is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441665.2176902, + "msecs": 217.69022941589355, + "relativeCreated": 62221.20547294617, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:25,217", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Summer mode", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441665.217387, + "msecs": 217.38696098327637, + "relativeCreated": 62220.90220451355, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Summer mode): True ()", + "asctime": "2023-02-15 07:14:25,217" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Summer mode", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441665.2175553, + "msecs": 217.55528450012207, + "relativeCreated": 62221.070528030396, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Summer mode): result = True ()", + "asctime": "2023-02-15 07:14:25,217" + } + ], + "time_consumption": 0.00013494491577148438 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441665.2181468, + "msecs": 218.14680099487305, + "relativeCreated": 62221.66204452515, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:25,218", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441665.2179081, + "msecs": 217.90814399719238, + "relativeCreated": 62221.423387527466, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 5 ()", + "asctime": "2023-02-15 07:14:25,217" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441665.218034, + "msecs": 218.034029006958, + "relativeCreated": 62221.54927253723, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 5 ()", + "asctime": "2023-02-15 07:14:25,218" + } + ], + "time_consumption": 0.00011277198791503906 + }, + { + "name": "__tLogger__", + "msg": "Deactivating summer mode", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 92, + "funcName": "__test_summer_mode__", + "created": 1676441665.5195389, + "msecs": 519.5388793945312, + "relativeCreated": 62523.054122924805, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Deactivating summer mode", + "asctime": "2023-02-15 07:14:25,519", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/summer_mode/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441665.2185426, + "msecs": 218.54257583618164, + "relativeCreated": 62222.057819366455, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/summer_mode/set and payload false", + "asctime": "2023-02-15 07:14:25,218" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.2314513, + "msecs": 231.45127296447754, + "relativeCreated": 62234.96651649475, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2023-02-15 07:14:25,231" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441665.232005, + "msecs": 232.00488090515137, + "relativeCreated": 62235.520124435425, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:25,232" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.232857, + "msecs": 232.85698890686035, + "relativeCreated": 62236.372232437134, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:25,232" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/summer_mode", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.2337637, + "msecs": 233.7636947631836, + "relativeCreated": 62237.27893829346, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'false'", + "asctime": "2023-02-15 07:14:25,233" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.2345607, + "msecs": 234.56072807312012, + "relativeCreated": 62238.07597160339, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:25,234" + } + ], + "time_consumption": 0.28497815132141113 + }, + { + "name": "__tLogger__", + "msg": "Summer mode is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441665.5202842, + "msecs": 520.2841758728027, + "relativeCreated": 62523.799419403076, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Summer mode is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:25,520", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Summer mode", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441665.5199752, + "msecs": 519.9751853942871, + "relativeCreated": 62523.49042892456, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Summer mode): False ()", + "asctime": "2023-02-15 07:14:25,519" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Summer mode", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441665.5201294, + "msecs": 520.1294422149658, + "relativeCreated": 62523.64468574524, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Summer mode): result = False ()", + "asctime": "2023-02-15 07:14:25,520" + } + ], + "time_consumption": 0.00015473365783691406 + }, + { + "name": "__tLogger__", + "msg": "Temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441665.5207007, + "msecs": 520.7006931304932, + "relativeCreated": 62524.21593666077, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Temperature setpoint is correct (Content 25 and Type is ).", + "asctime": "2023-02-15 07:14:25,520", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Temperature setpoint", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441665.520489, + "msecs": 520.488977432251, + "relativeCreated": 62524.004220962524, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Temperature setpoint): 25 ()", + "asctime": "2023-02-15 07:14:25,520" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Temperature setpoint", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441665.5205998, + "msecs": 520.5998420715332, + "relativeCreated": 62524.11508560181, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 25 ()", + "asctime": "2023-02-15 07:14:25,520" + } + ], + "time_consumption": 0.00010085105895996094 + } + ], + "time_consumption": 0.9071149826049805, + "time_start": "2023-02-15 07:14:24,613", + "time_finished": "2023-02-15 07:14:25,520" + }, + "User temperature setpoint test for device and virtual device: zigbee/gfw/dirk/heating_valve": { + "name": "__tLogger__", + "msg": "User temperature setpoint test for device and virtual device: zigbee/gfw/dirk/heating_valve", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "test_user_temperature_setpoint", + "created": 1676441665.5211828, + "msecs": 521.1827754974365, + "relativeCreated": 62524.69801902771, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "User temperature setpoint test for device and virtual device: zigbee/gfw/dirk/heating_valve", + "asctime": "2023-02-15 07:14:25,521", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Changing valve temperature setpoint to '%.1f'", + "args": [ + 20 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 33, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441665.8225377, + "msecs": 822.5376605987549, + "relativeCreated": 62826.05290412903, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing valve temperature setpoint to '20.0'", + "asctime": "2023-02-15 07:14:25,822", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441665.5216005, + "msecs": 521.6004848480225, + "relativeCreated": 62525.115728378296, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:25,521" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.522918, + "msecs": 522.9179859161377, + "relativeCreated": 62526.43322944641, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:25,522" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.5275714, + "msecs": 527.571439743042, + "relativeCreated": 62531.086683273315, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2023-02-15 07:14:25,527" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.528169, + "msecs": 528.1689167022705, + "relativeCreated": 62531.684160232544, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2023-02-15 07:14:25,528" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.5283856, + "msecs": 528.3856391906738, + "relativeCreated": 62531.90088272095, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2023-02-15 07:14:25,528" + } + ], + "time_consumption": 0.29415202140808105 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441665.8231606, + "msecs": 823.1606483459473, + "relativeCreated": 62826.67589187622, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 20 and Type is ).", + "asctime": "2023-02-15 07:14:25,823", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441665.822918, + "msecs": 822.9179382324219, + "relativeCreated": 62826.433181762695, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 20 ()", + "asctime": "2023-02-15 07:14:25,822" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441665.8230512, + "msecs": 823.0512142181396, + "relativeCreated": 62826.56645774841, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 20 ()", + "asctime": "2023-02-15 07:14:25,823" + } + ], + "time_consumption": 0.00010943412780761719 + }, + { + "name": "__tLogger__", + "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441665.823511, + "msecs": 823.5108852386475, + "relativeCreated": 62827.02612876892, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device user temperature is correct (Content 20 and Type is ).", + "asctime": "2023-02-15 07:14:25,823", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device user temperature", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441665.8233297, + "msecs": 823.3296871185303, + "relativeCreated": 62826.844930648804, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device user temperature): 20 ()", + "asctime": "2023-02-15 07:14:25,823" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device user temperature", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441665.823425, + "msecs": 823.4250545501709, + "relativeCreated": 62826.940298080444, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device user temperature): result = 20 ()", + "asctime": "2023-02-15 07:14:25,823" + } + ], + "time_consumption": 8.58306884765625e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing videv user temperature setpoint to '%.1f'", + "args": [ + 25 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 41, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441666.1246948, + "msecs": 124.69482421875, + "relativeCreated": 63128.21006774902, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing videv user temperature setpoint to '25.0'", + "asctime": "2023-02-15 07:14:26,124", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/user_temperature_setpoint/set", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441665.823792, + "msecs": 823.7919807434082, + "relativeCreated": 62827.30722427368, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2023-02-15 07:14:25,823" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.8308828, + "msecs": 830.8827877044678, + "relativeCreated": 62834.39803123474, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2023-02-15 07:14:25,830" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441665.8311594, + "msecs": 831.1593532562256, + "relativeCreated": 62834.6745967865, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:25,831" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.8316147, + "msecs": 831.6147327423096, + "relativeCreated": 62835.12997627258, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:25,831" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.83231, + "msecs": 832.3099613189697, + "relativeCreated": 62835.82520484924, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:25,832" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/user_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441665.8749368, + "msecs": 874.9368190765381, + "relativeCreated": 62878.45206260681, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:25,874" + } + ], + "time_consumption": 0.24975800514221191 + }, + { + "name": "__tLogger__", + "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441666.1253595, + "msecs": 125.35953521728516, + "relativeCreated": 63128.87477874756, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve device temperature setpoint is correct (Content 25 and Type is ).", + "asctime": "2023-02-15 07:14:26,125", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve device temperature setpoint", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441666.1251209, + "msecs": 125.12087821960449, + "relativeCreated": 63128.63612174988, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve device temperature setpoint): 25 ()", + "asctime": "2023-02-15 07:14:26,125" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve device temperature setpoint", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441666.125253, + "msecs": 125.25296211242676, + "relativeCreated": 63128.7682056427, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve device temperature setpoint): result = 25 ()", + "asctime": "2023-02-15 07:14:26,125" + } + ], + "time_consumption": 0.00010657310485839844 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441666.125708, + "msecs": 125.70810317993164, + "relativeCreated": 63129.223346710205, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 25 and Type is ).", + "asctime": "2023-02-15 07:14:26,125", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441666.125529, + "msecs": 125.52905082702637, + "relativeCreated": 63129.0442943573, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 25 ()", + "asctime": "2023-02-15 07:14:26,125" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441666.1256232, + "msecs": 125.62322616577148, + "relativeCreated": 63129.138469696045, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 25 ()", + "asctime": "2023-02-15 07:14:26,125" + } + ], + "time_consumption": 8.487701416015625e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing valve temperature setpoint to '%.1f'", + "args": [ + 20 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 33, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441666.4271753, + "msecs": 427.17528343200684, + "relativeCreated": 63430.69052696228, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing valve temperature setpoint to '20.0'", + "asctime": "2023-02-15 07:14:26,427", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441666.1260843, + "msecs": 126.0843276977539, + "relativeCreated": 63129.59957122803, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:26,126" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.1273513, + "msecs": 127.35128402709961, + "relativeCreated": 63130.86652755737, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:26,127" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 20}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.131771, + "msecs": 131.77108764648438, + "relativeCreated": 63135.28633117676, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", + "asctime": "2023-02-15 07:14:26,131" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.1324532, + "msecs": 132.45320320129395, + "relativeCreated": 63135.96844673157, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", + "asctime": "2023-02-15 07:14:26,132" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/user_temperature_setpoint", + "b'20'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.1331124, + "msecs": 133.11243057250977, + "relativeCreated": 63136.62767410278, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20'", + "asctime": "2023-02-15 07:14:26,133" + } + ], + "time_consumption": 0.29406285285949707 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441666.427648, + "msecs": 427.64806747436523, + "relativeCreated": 63431.16331100464, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 20 and Type is ).", + "asctime": "2023-02-15 07:14:26,427", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441666.4274814, + "msecs": 427.48141288757324, + "relativeCreated": 63430.99665641785, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 20 ()", + "asctime": "2023-02-15 07:14:26,427" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441666.4275734, + "msecs": 427.57344245910645, + "relativeCreated": 63431.08868598938, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 20 ()", + "asctime": "2023-02-15 07:14:26,427" + } + ], + "time_consumption": 7.462501525878906e-05 + }, + { + "name": "__tLogger__", + "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", + "args": [ + "20", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441666.4278975, + "msecs": 427.89745330810547, + "relativeCreated": 63431.41269683838, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device user temperature is correct (Content 20 and Type is ).", + "asctime": "2023-02-15 07:14:26,427", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device user temperature", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441666.4277632, + "msecs": 427.7632236480713, + "relativeCreated": 63431.278467178345, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device user temperature): 20 ()", + "asctime": "2023-02-15 07:14:26,427" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device user temperature", + "=", + "20", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441666.4278295, + "msecs": 427.8295040130615, + "relativeCreated": 63431.344747543335, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device user temperature): result = 20 ()", + "asctime": "2023-02-15 07:14:26,427" + } + ], + "time_consumption": 6.794929504394531e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing videv user temperature setpoint to '%.1f'", + "args": [ + 25 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", + "filename": "heating.py", + "module": "heating", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 41, + "funcName": "__test_user_temperature_setpoint__", + "created": 1676441666.7289133, + "msecs": 728.9133071899414, + "relativeCreated": 63732.428550720215, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing videv user temperature setpoint to '25.0'", + "asctime": "2023-02-15 07:14:26,728", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/user_temperature_setpoint/set", + "25" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441666.4280756, + "msecs": 428.07555198669434, + "relativeCreated": 63431.59079551697, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint/set and payload 25", + "asctime": "2023-02-15 07:14:26,428" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve/set", + "b'{\"current_heating_setpoint\": 25}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.431941, + "msecs": 431.94103240966797, + "relativeCreated": 63435.45627593994, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", + "asctime": "2023-02-15 07:14:26,431" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441666.4322584, + "msecs": 432.25836753845215, + "relativeCreated": 63435.773611068726, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:26,432" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.432893, + "msecs": 432.8930377960205, + "relativeCreated": 63436.408281326294, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:26,432" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/heating_valve/user_temperature_setpoint", + "b'25'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.4336941, + "msecs": 433.69412422180176, + "relativeCreated": 63437.209367752075, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", + "asctime": "2023-02-15 07:14:26,433" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/heating_valve", + "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.434345, + "msecs": 434.345006942749, + "relativeCreated": 63437.86025047302, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:26,434" + } + ], + "time_consumption": 0.2945683002471924 + }, + { + "name": "__tLogger__", + "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441666.7296517, + "msecs": 729.651689529419, + "relativeCreated": 63733.16693305969, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Valve device temperature setpoint is correct (Content 25 and Type is ).", + "asctime": "2023-02-15 07:14:26,729", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Valve device temperature setpoint", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441666.7293773, + "msecs": 729.377269744873, + "relativeCreated": 63732.89251327515, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Valve device temperature setpoint): 25 ()", + "asctime": "2023-02-15 07:14:26,729" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Valve device temperature setpoint", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441666.729531, + "msecs": 729.5310497283936, + "relativeCreated": 63733.04629325867, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Valve device temperature setpoint): result = 25 ()", + "asctime": "2023-02-15 07:14:26,729" + } + ], + "time_consumption": 0.00012063980102539062 + }, + { + "name": "__tLogger__", + "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", + "args": [ + "25", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441666.730056, + "msecs": 730.0560474395752, + "relativeCreated": 63733.57129096985, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 25 and Type is ).", + "asctime": "2023-02-15 07:14:26,730", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device valve temperature", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441666.7298446, + "msecs": 729.8445701599121, + "relativeCreated": 63733.359813690186, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device valve temperature): 25 ()", + "asctime": "2023-02-15 07:14:26,729" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device valve temperature", + "=", + "25", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441666.7299569, + "msecs": 729.956865310669, + "relativeCreated": 63733.47210884094, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 25 ()", + "asctime": "2023-02-15 07:14:26,729" + } + ], + "time_consumption": 9.918212890625e-05 + } + ], + "time_consumption": 1.2088732719421387, + "time_start": "2023-02-15 07:14:25,521", + "time_finished": "2023-02-15 07:14:26,730" + }, + "Brightness test for device and virtual device: zigbee/gfw/dirk/main_light": { + "name": "__tLogger__", + "msg": "Brightness test for device and virtual device: zigbee/gfw/dirk/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_brightness", + "created": 1676441666.7306707, + "msecs": 730.670690536499, + "relativeCreated": 63734.18593406677, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness test for device and virtual device: zigbee/gfw/dirk/main_light", + "asctime": "2023-02-15 07:14:26,730", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 57, + "funcName": "__test_brightness__", + "created": 1676441667.0327015, + "msecs": 32.70149230957031, + "relativeCreated": 64036.216735839844, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:27,032", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/gfw/dirk/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441666.730987, + "msecs": 730.9870719909668, + "relativeCreated": 63734.50231552124, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:26,730" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441666.7316542, + "msecs": 731.654167175293, + "relativeCreated": 63735.16941070557, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:26,731" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/gfw/dirk/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.7327929, + "msecs": 732.792854309082, + "relativeCreated": 63736.308097839355, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:26,732" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.7336426, + "msecs": 733.642578125, + "relativeCreated": 63737.15782165527, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:26,733" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.7794025, + "msecs": 779.402494430542, + "relativeCreated": 63782.917737960815, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:26,779" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.7802556, + "msecs": 780.2555561065674, + "relativeCreated": 63783.77079963684, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:26,780" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441666.7808962, + "msecs": 780.8961868286133, + "relativeCreated": 63784.41143035889, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:26,780" + } + ], + "time_consumption": 0.25180530548095703 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441667.0334425, + "msecs": 33.44249725341797, + "relativeCreated": 64036.95774078369, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:27,033", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441667.0331614, + "msecs": 33.16140174865723, + "relativeCreated": 64036.67664527893, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:27,033" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441667.0333178, + "msecs": 33.31780433654785, + "relativeCreated": 64036.83304786682, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:27,033" + } + ], + "time_consumption": 0.0001246929168701172 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441667.334744, + "msecs": 334.7439765930176, + "relativeCreated": 64338.25922012329, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:27,334", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441667.0338418, + "msecs": 33.841848373413086, + "relativeCreated": 64037.35709190369, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:27,033" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.035163, + "msecs": 35.162925720214844, + "relativeCreated": 64038.67816925049, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:27,035" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.0375204, + "msecs": 37.520408630371094, + "relativeCreated": 64041.035652160645, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:27,037" + } + ], + "time_consumption": 0.2972235679626465 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441667.3354971, + "msecs": 335.4971408843994, + "relativeCreated": 64339.01238441467, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:27,335", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441667.3351836, + "msecs": 335.18362045288086, + "relativeCreated": 64338.698863983154, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:27,335" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441667.3353722, + "msecs": 335.3722095489502, + "relativeCreated": 64338.88745307922, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:27,335" + } + ], + "time_consumption": 0.00012493133544921875 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441667.3359046, + "msecs": 335.904598236084, + "relativeCreated": 64339.41984176636, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:27,335", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441667.3356948, + "msecs": 335.6947898864746, + "relativeCreated": 64339.21003341675, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:27,335" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441667.3358052, + "msecs": 335.80517768859863, + "relativeCreated": 64339.32042121887, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:27,335" + } + ], + "time_consumption": 9.942054748535156e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441667.6373587, + "msecs": 637.3586654663086, + "relativeCreated": 64640.87390899658, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:27,637", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441667.3362541, + "msecs": 336.2541198730469, + "relativeCreated": 64339.76936340332, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:27,336" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.339667, + "msecs": 339.66708183288574, + "relativeCreated": 64343.18232536316, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:27,339" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441667.3401837, + "msecs": 340.1837348937988, + "relativeCreated": 64343.69897842407, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:27,340" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.341436, + "msecs": 341.43590927124023, + "relativeCreated": 64344.951152801514, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:27,341" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.385187, + "msecs": 385.18691062927246, + "relativeCreated": 64388.702154159546, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:27,385" + } + ], + "time_consumption": 0.25217175483703613 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441667.6380858, + "msecs": 638.0858421325684, + "relativeCreated": 64641.60108566284, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:27,638", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441667.637813, + "msecs": 637.8130912780762, + "relativeCreated": 64641.32833480835, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:27,637" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441667.637966, + "msecs": 637.9659175872803, + "relativeCreated": 64641.481161117554, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:27,637" + } + ], + "time_consumption": 0.00011992454528808594 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441667.6386003, + "msecs": 638.6003494262695, + "relativeCreated": 64642.11559295654, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:27,638", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441667.6382856, + "msecs": 638.2856369018555, + "relativeCreated": 64641.80088043213, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:27,638" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441667.638399, + "msecs": 638.3988857269287, + "relativeCreated": 64641.9141292572, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:27,638" + } + ], + "time_consumption": 0.0002014636993408203 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441667.9401498, + "msecs": 940.1497840881348, + "relativeCreated": 64943.66502761841, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:27,940", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441667.6390119, + "msecs": 639.0118598937988, + "relativeCreated": 64642.52710342407, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:27,639" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.6402802, + "msecs": 640.2802467346191, + "relativeCreated": 64643.79549026489, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:27,640" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.6431968, + "msecs": 643.1968212127686, + "relativeCreated": 64646.71206474304, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:27,643" + } + ], + "time_consumption": 0.2969529628753662 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441667.9408722, + "msecs": 940.8721923828125, + "relativeCreated": 64944.387435913086, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:27,940", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441667.940598, + "msecs": 940.5980110168457, + "relativeCreated": 64944.11325454712, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:27,940" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441667.9407492, + "msecs": 940.7491683959961, + "relativeCreated": 64944.26441192627, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:27,940" + } + ], + "time_consumption": 0.00012302398681640625 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441667.9413197, + "msecs": 941.3197040557861, + "relativeCreated": 64944.83494758606, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:27,941", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441667.9411068, + "msecs": 941.1067962646484, + "relativeCreated": 64944.62203979492, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:27,941" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441667.941219, + "msecs": 941.2190914154053, + "relativeCreated": 64944.73433494568, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:27,941" + } + ], + "time_consumption": 0.00010061264038085938 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441668.2427437, + "msecs": 242.74373054504395, + "relativeCreated": 65246.25897407532, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:28,242", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441667.9415987, + "msecs": 941.598653793335, + "relativeCreated": 64945.11389732361, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:27,941" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.9448597, + "msecs": 944.8597431182861, + "relativeCreated": 64948.37498664856, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:27,944" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441667.9454083, + "msecs": 945.4083442687988, + "relativeCreated": 64948.92358779907, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:27,945" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.9466858, + "msecs": 946.685791015625, + "relativeCreated": 64950.2010345459, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:27,946" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441667.990006, + "msecs": 990.0059700012207, + "relativeCreated": 64993.521213531494, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:27,990" + } + ], + "time_consumption": 0.25273776054382324 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441668.243504, + "msecs": 243.50404739379883, + "relativeCreated": 65247.01929092407, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:28,243", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441668.243229, + "msecs": 243.22891235351562, + "relativeCreated": 65246.74415588379, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:28,243" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441668.2433844, + "msecs": 243.38436126708984, + "relativeCreated": 65246.89960479736, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:28,243" + } + ], + "time_consumption": 0.00011968612670898438 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "__test_brightness__", + "created": 1676441668.5450075, + "msecs": 545.0074672698975, + "relativeCreated": 65548.52271080017, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:14:28,545", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/gfw/dirk/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441668.243815, + "msecs": 243.81494522094727, + "relativeCreated": 65247.33018875122, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:28,243" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/gfw/dirk/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441668.2451947, + "msecs": 245.194673538208, + "relativeCreated": 65248.70991706848, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:28,245" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441668.250086, + "msecs": 250.08606910705566, + "relativeCreated": 65253.60131263733, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:28,250" + } + ], + "time_consumption": 0.2949213981628418 + } + ], + "time_consumption": 1.8143367767333984, + "time_start": "2023-02-15 07:14:26,730", + "time_finished": "2023-02-15 07:14:28,545" + }, + "Color temperature test for device and virtual device: zigbee/gfw/dirk/main_light": { + "name": "__tLogger__", + "msg": "Color temperature test for device and virtual device: zigbee/gfw/dirk/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 81, + "funcName": "test_color_temp", + "created": 1676441668.5457728, + "msecs": 545.7727909088135, + "relativeCreated": 65549.28803443909, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Color temperature test for device and virtual device: zigbee/gfw/dirk/main_light", + "asctime": "2023-02-15 07:14:28,545", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 88, + "funcName": "__test_color_temp__", + "created": 1676441668.8478353, + "msecs": 847.8353023529053, + "relativeCreated": 65851.35054588318, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:28,847", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/gfw/dirk/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441668.5461137, + "msecs": 546.1137294769287, + "relativeCreated": 65549.6289730072, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:28,546" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441668.5468097, + "msecs": 546.8096733093262, + "relativeCreated": 65550.3249168396, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:28,546" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/gfw/dirk/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441668.5479991, + "msecs": 547.9991436004639, + "relativeCreated": 65551.51438713074, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:28,547" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441668.5488493, + "msecs": 548.84934425354, + "relativeCreated": 65552.36458778381, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:28,548" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441668.5953872, + "msecs": 595.3872203826904, + "relativeCreated": 65598.90246391296, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:28,595" + } + ], + "time_consumption": 0.25244808197021484 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "5", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441668.84858, + "msecs": 848.5798835754395, + "relativeCreated": 65852.09512710571, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:28,848", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441668.848295, + "msecs": 848.2949733734131, + "relativeCreated": 65851.81021690369, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:14:28,848" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "5", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441668.8484545, + "msecs": 848.454475402832, + "relativeCreated": 65851.9697189331, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:28,848" + } + ], + "time_consumption": 0.00012540817260742188 + }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441669.15016, + "msecs": 150.1600742340088, + "relativeCreated": 66153.67531776428, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:14:29,150", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441668.8489873, + "msecs": 848.987340927124, + "relativeCreated": 65852.5025844574, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:28,848" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441668.8502953, + "msecs": 850.2953052520752, + "relativeCreated": 65853.81054878235, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:28,850" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441668.8528087, + "msecs": 852.8087139129639, + "relativeCreated": 65856.32395744324, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:28,852" + } + ], + "time_consumption": 0.2973513603210449 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441669.1509342, + "msecs": 150.93421936035156, + "relativeCreated": 66154.44946289062, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:29,150", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441669.1506548, + "msecs": 150.65479278564453, + "relativeCreated": 66154.17003631592, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:14:29,150" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441669.150812, + "msecs": 150.81191062927246, + "relativeCreated": 66154.32715415955, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:14:29,150" } ], "time_consumption": 0.00012230873107910156 @@ -11945,15 +76281,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954623.7056038, - "msecs": 705.603837966919, - "relativeCreated": 9601.84621810913, - "thread": 139894075555840, + "created": 1676441669.151381, + "msecs": 151.3810157775879, + "relativeCreated": 66154.89625930786, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:03,705", + "asctime": "2023-02-15 07:14:29,151", "moduleLogger": [ { "name": "__unittest__", @@ -11973,15 +76309,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954623.7054121, - "msecs": 705.4121494293213, - "relativeCreated": 9601.654529571533, - "thread": 139894075555840, + "created": 1676441669.1511695, + "msecs": 151.1695384979248, + "relativeCreated": 66154.6847820282, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:03,705" + "asctime": "2023-02-15 07:14:29,151" }, { "name": "__unittest__", @@ -12002,18 +76338,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954623.7055147, - "msecs": 705.514669418335, - "relativeCreated": 9601.757049560547, - "thread": 139894075555840, + "created": 1676441669.151281, + "msecs": 151.28111839294434, + "relativeCreated": 66154.79636192322, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:03,705" + "asctime": "2023-02-15 07:14:29,151" } ], - "time_consumption": 8.916854858398438e-05 + "time_consumption": 9.989738464355469e-05 }, { "name": "__tLogger__", @@ -12031,21 +76367,21 @@ "stack_info": null, "lineno": 100, "funcName": "__test_color_temp__", - "created": 1675954624.0078425, - "msecs": 7.842540740966797, - "relativeCreated": 9904.084920883179, - "thread": 139894075555840, + "created": 1676441669.4526005, + "msecs": 452.60047912597656, + "relativeCreated": 66456.11572265625, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:04,007", + "asctime": "2023-02-15 07:14:29,452", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", + "videv/gfw/dirk/main_light/color_temp/set", "5" ], "levelname": "DEBUG", @@ -12058,21 +76394,102 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954623.7058935, - "msecs": 705.8935165405273, - "relativeCreated": 9602.13589668274, - "thread": 139894075555840, + "created": 1676441669.151714, + "msecs": 151.71408653259277, + "relativeCreated": 66155.22933006287, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp and payload 5", - "asctime": "2023-02-09 15:57:03,705" + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:29,151" }, { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", + "zigbee/gfw/dirk/main_light/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441669.155029, + "msecs": 155.0290584564209, + "relativeCreated": 66158.5443019867, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:29,155" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441669.1555917, + "msecs": 155.5917263031006, + "relativeCreated": 66159.10696983337, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:29,155" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441669.156829, + "msecs": 156.8291187286377, + "relativeCreated": 66160.34436225891, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:29,156" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/color_temp", "b'5'" ], "levelname": "DEBUG", @@ -12085,288 +76502,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954623.7069945, - "msecs": 706.9945335388184, - "relativeCreated": 9603.23691368103, - "thread": 139894051313216, + "created": 1676441669.2019517, + "msecs": 201.9517421722412, + "relativeCreated": 66205.46698570251, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:03,706" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.7107646, - "msecs": 710.7646465301514, - "relativeCreated": 9607.007026672363, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:03,710" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954623.711259, - "msecs": 711.2588882446289, - "relativeCreated": 9607.50126838684, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:03,711" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.711759, - "msecs": 711.759090423584, - "relativeCreated": 9608.001470565796, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:03,711" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.7123609, - "msecs": 712.3608589172363, - "relativeCreated": 9608.603239059448, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:03,712" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.7128425, - "msecs": 712.8424644470215, - "relativeCreated": 9609.084844589233, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:03,712" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.7133598, - "msecs": 713.3598327636719, - "relativeCreated": 9609.602212905884, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:03,713" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.7138202, - "msecs": 713.820219039917, - "relativeCreated": 9610.062599182129, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:03,713" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.7142863, - "msecs": 714.2863273620605, - "relativeCreated": 9610.528707504272, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:03,714" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.7585962, - "msecs": 758.5961818695068, - "relativeCreated": 9654.838562011719, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:03,758" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954623.7592962, - "msecs": 759.296178817749, - "relativeCreated": 9655.538558959961, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:03,759" + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:29,201" } ], - "time_consumption": 0.24854636192321777 + "time_consumption": 0.25064873695373535 }, { "name": "__tLogger__", @@ -12385,15 +76532,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954624.0084581, - "msecs": 8.458137512207031, - "relativeCreated": 9904.700517654419, - "thread": 139894075555840, + "created": 1676441669.4532247, + "msecs": 453.22465896606445, + "relativeCreated": 66456.73990249634, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:04,008", + "asctime": "2023-02-15 07:14:29,453", "moduleLogger": [ { "name": "__unittest__", @@ -12413,15 +76560,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954624.0082123, - "msecs": 8.21232795715332, - "relativeCreated": 9904.454708099365, - "thread": 139894075555840, + "created": 1676441669.4529934, + "msecs": 452.99339294433594, + "relativeCreated": 66456.50863647461, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:04,008" + "asctime": "2023-02-15 07:14:29,452" }, { "name": "__unittest__", @@ -12442,22380 +76589,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954624.0083618, - "msecs": 8.36181640625, - "relativeCreated": 9904.604196548462, - "thread": 139894075555840, + "created": 1676441669.453122, + "msecs": 453.1219005584717, + "relativeCreated": 66456.63714408875, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:04,008" - } - ], - "time_consumption": 9.632110595703125e-05 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954624.0087843, - "msecs": 8.784294128417969, - "relativeCreated": 9905.02667427063, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:04,008", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954624.008611, - "msecs": 8.610963821411133, - "relativeCreated": 9904.853343963623, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:04,008" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954624.008701, - "msecs": 8.701086044311523, - "relativeCreated": 9904.943466186523, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:04,008" - } - ], - "time_consumption": 8.320808410644531e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954624.3101838, - "msecs": 310.1837635040283, - "relativeCreated": 10206.42614364624, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:04,310", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954624.0091164, - "msecs": 9.116411209106445, - "relativeCreated": 9905.358791351318, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:04,009" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.010079, - "msecs": 10.078907012939453, - "relativeCreated": 9906.321287155151, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:04,010" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.0123508, - "msecs": 12.350797653198242, - "relativeCreated": 9908.59317779541, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:04,012" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.0129557, - "msecs": 12.955665588378906, - "relativeCreated": 9909.19804573059, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:04,012" - } - ], - "time_consumption": 0.2972280979156494 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954624.3107903, - "msecs": 310.7903003692627, - "relativeCreated": 10207.032680511475, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:04,310", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954624.3105466, - "msecs": 310.5466365814209, - "relativeCreated": 10206.789016723633, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:04,310" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954624.310694, - "msecs": 310.69397926330566, - "relativeCreated": 10206.936359405518, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:04,310" - } - ], - "time_consumption": 9.632110595703125e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954624.3111162, - "msecs": 311.11621856689453, - "relativeCreated": 10207.358598709106, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:04,311", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954624.3109396, - "msecs": 310.9395503997803, - "relativeCreated": 10207.181930541992, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:04,310" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954624.3110244, - "msecs": 311.02442741394043, - "relativeCreated": 10207.266807556152, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:04,311" - } - ], - "time_consumption": 9.179115295410156e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954624.6132512, - "msecs": 613.2512092590332, - "relativeCreated": 10509.493589401245, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:04,613", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954624.3113751, - "msecs": 311.3751411437988, - "relativeCreated": 10207.61752128601, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp and payload 5", - "asctime": "2023-02-09 15:57:04,311" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.3123446, - "msecs": 312.3445510864258, - "relativeCreated": 10208.586931228638, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:04,312" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.3157396, - "msecs": 315.73963165283203, - "relativeCreated": 10211.982011795044, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:04,315" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954624.3162074, - "msecs": 316.2074089050293, - "relativeCreated": 10212.449789047241, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:04,316" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.3167198, - "msecs": 316.71977043151855, - "relativeCreated": 10212.96215057373, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:04,316" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.3173478, - "msecs": 317.34776496887207, - "relativeCreated": 10213.590145111084, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:04,317" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.3178556, - "msecs": 317.8555965423584, - "relativeCreated": 10214.09797668457, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:04,317" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.318334, - "msecs": 318.33410263061523, - "relativeCreated": 10214.576482772827, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:04,318" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.3188052, - "msecs": 318.8052177429199, - "relativeCreated": 10215.047597885132, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:04,318" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.3192663, - "msecs": 319.26631927490234, - "relativeCreated": 10215.508699417114, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:04,319" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.3624742, - "msecs": 362.4742031097412, - "relativeCreated": 10258.716583251953, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:04,362" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.363155, - "msecs": 363.1548881530762, - "relativeCreated": 10259.397268295288, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:04,363" - } - ], - "time_consumption": 0.25009632110595703 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954624.6138353, - "msecs": 613.835334777832, - "relativeCreated": 10510.077714920044, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:04,613", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954624.6136186, - "msecs": 613.6186122894287, - "relativeCreated": 10509.86099243164, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:04,613" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954624.6137393, - "msecs": 613.7392520904541, - "relativeCreated": 10509.981632232666, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:04,613" - } - ], - "time_consumption": 9.608268737792969e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 105, - "funcName": "__test_color_temp__", - "created": 1675954624.9152904, - "msecs": 915.290355682373, - "relativeCreated": 10811.532735824585, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:04,915", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954624.6141987, - "msecs": 614.1986846923828, - "relativeCreated": 10510.441064834595, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:04,614" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.6151903, - "msecs": 615.1902675628662, - "relativeCreated": 10511.432647705078, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:04,615" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.617468, - "msecs": 617.4681186676025, - "relativeCreated": 10513.710498809814, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:04,617" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.6180563, - "msecs": 618.0562973022461, - "relativeCreated": 10514.298677444458, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:04,618" - } - ], - "time_consumption": 0.29723405838012695 - } - ], - "time_consumption": 1.8150229454040527, - "time_start": "2023-02-09 15:57:03,100", - "time_finished": "2023-02-09 15:57:04,915" - }, - "Power On/ Off test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954624.915938, - "msecs": 915.9379005432129, - "relativeCreated": 10812.180280685425, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: zigbee/ffe/livingroom/floorlamp_1", - "asctime": "2023-02-09 15:57:04,915", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954624.9163847, - "msecs": 916.3846969604492, - "relativeCreated": 10812.627077102661, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:04,916", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954624.9161623, - "msecs": 916.1622524261475, - "relativeCreated": 10812.40463256836, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:04,916" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954624.9162796, - "msecs": 916.2795543670654, - "relativeCreated": 10812.521934509277, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:04,916" - } - ], - "time_consumption": 0.00010514259338378906 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954625.2186291, - "msecs": 218.6291217803955, - "relativeCreated": 11114.871501922607, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:05,218", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954624.9167109, - "msecs": 916.7108535766602, - "relativeCreated": 10812.953233718872, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:04,916" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.9177222, - "msecs": 917.722225189209, - "relativeCreated": 10813.96460533142, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:04,917" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.9199917, - "msecs": 919.9917316436768, - "relativeCreated": 10816.234111785889, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:04,919" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954624.9205818, - "msecs": 920.5818176269531, - "relativeCreated": 10816.824197769165, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:04,920" - } - ], - "time_consumption": 0.2980473041534424 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954625.2192008, - "msecs": 219.20084953308105, - "relativeCreated": 11115.443229675293, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:05,219", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954625.2189887, - "msecs": 218.98865699768066, - "relativeCreated": 11115.231037139893, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:05,218" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954625.219107, - "msecs": 219.10691261291504, - "relativeCreated": 11115.349292755127, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:05,219" - } - ], - "time_consumption": 9.393692016601562e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954625.219535, - "msecs": 219.53511238098145, - "relativeCreated": 11115.777492523193, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:05,219", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954625.2193491, - "msecs": 219.34914588928223, - "relativeCreated": 11115.591526031494, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:05,219" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954625.2194366, - "msecs": 219.4366455078125, - "relativeCreated": 11115.679025650024, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:05,219" - } - ], - "time_consumption": 9.846687316894531e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954625.5208857, - "msecs": 520.885705947876, - "relativeCreated": 11417.128086090088, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:05,520", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954625.219798, - "msecs": 219.79808807373047, - "relativeCreated": 11116.040468215942, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state and payload false", - "asctime": "2023-02-09 15:57:05,219" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.2207642, - "msecs": 220.76416015625, - "relativeCreated": 11117.006540298462, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:05,220" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.2240613, - "msecs": 224.0612506866455, - "relativeCreated": 11120.303630828857, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,224" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954625.2245407, - "msecs": 224.54071044921875, - "relativeCreated": 11120.78309059143, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:05,224" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.2250364, - "msecs": 225.0363826751709, - "relativeCreated": 11121.278762817383, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,225" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.2256737, - "msecs": 225.67367553710938, - "relativeCreated": 11121.916055679321, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,225" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.2261848, - "msecs": 226.18484497070312, - "relativeCreated": 11122.427225112915, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,226" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.2266505, - "msecs": 226.65047645568848, - "relativeCreated": 11122.8928565979, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,226" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.2271037, - "msecs": 227.10371017456055, - "relativeCreated": 11123.346090316772, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,227" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.2297661, - "msecs": 229.7661304473877, - "relativeCreated": 11126.0085105896, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:05,229" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.2714167, - "msecs": 271.41666412353516, - "relativeCreated": 11167.659044265747, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:05,271" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.272098, - "msecs": 272.0980644226074, - "relativeCreated": 11168.34044456482, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:05,272" - } - ], - "time_consumption": 0.24878764152526855 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954625.521533, - "msecs": 521.5330123901367, - "relativeCreated": 11417.775392532349, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:05,521", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954625.5213144, - "msecs": 521.3143825531006, - "relativeCreated": 11417.556762695312, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:05,521" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954625.5214374, - "msecs": 521.437406539917, - "relativeCreated": 11417.679786682129, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:05,521" - } - ], - "time_consumption": 9.560585021972656e-05 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954625.5218596, - "msecs": 521.8596458435059, - "relativeCreated": 11418.102025985718, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:05,521", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954625.521683, - "msecs": 521.6829776763916, - "relativeCreated": 11417.925357818604, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:05,521" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954625.5217817, - "msecs": 521.7816829681396, - "relativeCreated": 11418.024063110352, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:05,521" - } - ], - "time_consumption": 7.796287536621094e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954625.8240948, - "msecs": 824.0947723388672, - "relativeCreated": 11720.33715248108, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:05,824", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954625.5221817, - "msecs": 522.1817493438721, - "relativeCreated": 11418.424129486084, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:05,522" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.5231514, - "msecs": 523.1513977050781, - "relativeCreated": 11419.39377784729, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:05,523" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.5254369, - "msecs": 525.4368782043457, - "relativeCreated": 11421.679258346558, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:05,525" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.5260286, - "msecs": 526.0286331176758, - "relativeCreated": 11422.271013259888, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:05,526" - } - ], - "time_consumption": 0.2980661392211914 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954625.824742, - "msecs": 824.7420787811279, - "relativeCreated": 11720.98445892334, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:05,824", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954625.8244977, - "msecs": 824.4976997375488, - "relativeCreated": 11720.74007987976, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:05,824" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954625.8246343, - "msecs": 824.634313583374, - "relativeCreated": 11720.876693725586, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:05,824" - } - ], - "time_consumption": 0.00010776519775390625 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954625.8251746, - "msecs": 825.1745700836182, - "relativeCreated": 11721.41695022583, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:05,825", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954625.8249128, - "msecs": 824.9127864837646, - "relativeCreated": 11721.155166625977, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:05,824" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954625.8250778, - "msecs": 825.0777721405029, - "relativeCreated": 11721.320152282715, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:05,825" - } - ], - "time_consumption": 9.679794311523438e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954626.1265712, - "msecs": 126.5711784362793, - "relativeCreated": 12022.813558578491, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:06,126", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954625.8254552, - "msecs": 825.4551887512207, - "relativeCreated": 11721.697568893433, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/state and payload false", - "asctime": "2023-02-09 15:57:05,825" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.826529, - "msecs": 826.5290260314941, - "relativeCreated": 11722.771406173706, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:05,826" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.8303065, - "msecs": 830.3065299987793, - "relativeCreated": 11726.548910140991, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,830" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954625.8308508, - "msecs": 830.8508396148682, - "relativeCreated": 11727.09321975708, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:05,830" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.8314373, - "msecs": 831.437349319458, - "relativeCreated": 11727.67972946167, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,831" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.8320312, - "msecs": 832.03125, - "relativeCreated": 11728.273630142212, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,832" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.8325107, - "msecs": 832.5107097625732, - "relativeCreated": 11728.753089904785, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,832" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.8329928, - "msecs": 832.9927921295166, - "relativeCreated": 11729.235172271729, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,832" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.8334773, - "msecs": 833.477258682251, - "relativeCreated": 11729.719638824463, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:05,833" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.8339338, - "msecs": 833.9338302612305, - "relativeCreated": 11730.176210403442, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:05,833" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.87938, - "msecs": 879.3799877166748, - "relativeCreated": 11775.622367858887, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:05,879" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954625.8800607, - "msecs": 880.0606727600098, - "relativeCreated": 11776.303052902222, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:05,880" - } - ], - "time_consumption": 0.24651050567626953 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954626.1271598, - "msecs": 127.15983390808105, - "relativeCreated": 12023.402214050293, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:06,127", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954626.126944, - "msecs": 126.94406509399414, - "relativeCreated": 12023.186445236206, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:06,126" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954626.1270645, - "msecs": 127.06446647644043, - "relativeCreated": 12023.306846618652, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:06,127" - } - ], - "time_consumption": 9.5367431640625e-05 - } - ], - "time_consumption": 1.2112219333648682, - "time_start": "2023-02-09 15:57:04,915", - "time_finished": "2023-02-09 15:57:06,127" - }, - "Brightness test for device and virtual device: zigbee/ffe/livingroom/main_light": { - "name": "__tLogger__", - "msg": "Brightness test for device and virtual device: zigbee/ffe/livingroom/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_brightness", - "created": 1675954626.1276438, - "msecs": 127.64382362365723, - "relativeCreated": 12023.88620376587, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness test for device and virtual device: zigbee/ffe/livingroom/main_light", - "asctime": "2023-02-09 15:57:06,127", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 57, - "funcName": "__test_brightness__", - "created": 1675954626.4292324, - "msecs": 429.2323589324951, - "relativeCreated": 12325.474739074707, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:06,429", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.1279092, - "msecs": 127.90918350219727, - "relativeCreated": 12024.15156364441, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:06,127" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.1284575, - "msecs": 128.45754623413086, - "relativeCreated": 12024.699926376343, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:06,128" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.12933, - "msecs": 129.32991981506348, - "relativeCreated": 12025.572299957275, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:06,129" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1299222, - "msecs": 129.92215156555176, - "relativeCreated": 12026.164531707764, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:06,129" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1736321, - "msecs": 173.63214492797852, - "relativeCreated": 12069.87452507019, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:06,173" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.174228, - "msecs": 174.22795295715332, - "relativeCreated": 12070.470333099365, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:06,174" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1747925, - "msecs": 174.79252815246582, - "relativeCreated": 12071.034908294678, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:06,174" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.1752403, - "msecs": 175.24027824401855, - "relativeCreated": 12071.48265838623, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:06,175" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1758187, - "msecs": 175.81868171691895, - "relativeCreated": 12072.06106185913, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:06,175" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.17626, - "msecs": 176.25999450683594, - "relativeCreated": 12072.502374649048, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:06,176" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1767244, - "msecs": 176.72443389892578, - "relativeCreated": 12072.966814041138, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:06,176" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.177212, - "msecs": 177.21199989318848, - "relativeCreated": 12073.4543800354, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:06,177" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.177842, - "msecs": 177.8419017791748, - "relativeCreated": 12074.084281921387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:06,177" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.1782832, - "msecs": 178.2832145690918, - "relativeCreated": 12074.525594711304, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:06,178" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1787267, - "msecs": 178.7266731262207, - "relativeCreated": 12074.969053268433, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:06,178" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.1791515, - "msecs": 179.1515350341797, - "relativeCreated": 12075.393915176392, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:06,179" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1797187, - "msecs": 179.7187328338623, - "relativeCreated": 12075.961112976074, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:06,179" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1802673, - "msecs": 180.267333984375, - "relativeCreated": 12076.509714126587, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:06,180" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1807916, - "msecs": 180.79161643981934, - "relativeCreated": 12077.033996582031, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:06,180" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1813495, - "msecs": 181.349515914917, - "relativeCreated": 12077.591896057129, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:06,181" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1819973, - "msecs": 181.99729919433594, - "relativeCreated": 12078.239679336548, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:06,181" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1825216, - "msecs": 182.52158164978027, - "relativeCreated": 12078.763961791992, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:06,182" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.183, - "msecs": 183.0000877380371, - "relativeCreated": 12079.242467880249, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:06,183" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1834662, - "msecs": 183.46619606018066, - "relativeCreated": 12079.708576202393, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:06,183" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1839228, - "msecs": 183.92276763916016, - "relativeCreated": 12080.165147781372, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:06,183" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1844103, - "msecs": 184.41033363342285, - "relativeCreated": 12080.652713775635, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:06,184" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1848683, - "msecs": 184.86833572387695, - "relativeCreated": 12081.110715866089, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:06,184" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.1854007, - "msecs": 185.40072441101074, - "relativeCreated": 12081.643104553223, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:06,185" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.2216022, - "msecs": 221.602201461792, - "relativeCreated": 12117.844581604004, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:06,221" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.2223704, - "msecs": 222.37038612365723, - "relativeCreated": 12118.61276626587, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:06,222" - } - ], - "time_consumption": 0.2068619728088379 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954626.4298277, - "msecs": 429.8276901245117, - "relativeCreated": 12326.070070266724, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:06,429", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954626.4296083, - "msecs": 429.6083450317383, - "relativeCreated": 12325.85072517395, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:06,429" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954626.4297326, - "msecs": 429.7325611114502, - "relativeCreated": 12325.974941253662, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:06,429" - } - ], - "time_consumption": 9.512901306152344e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954626.7311728, - "msecs": 731.1728000640869, - "relativeCreated": 12627.415180206299, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:06,731", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.4301558, - "msecs": 430.15575408935547, - "relativeCreated": 12326.398134231567, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:06,430" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.431252, - "msecs": 431.25200271606445, - "relativeCreated": 12327.494382858276, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:06,431" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.433816, - "msecs": 433.81595611572266, - "relativeCreated": 12330.058336257935, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:06,433" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.434518, - "msecs": 434.51809883117676, - "relativeCreated": 12330.760478973389, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:06,434" - } - ], - "time_consumption": 0.29665470123291016 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954626.7318156, - "msecs": 731.8155765533447, - "relativeCreated": 12628.057956695557, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:06,731", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954626.7315738, - "msecs": 731.5738201141357, - "relativeCreated": 12627.816200256348, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:06,731" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954626.7317088, - "msecs": 731.7087650299072, - "relativeCreated": 12627.95114517212, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:06,731" - } - ], - "time_consumption": 0.0001068115234375 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954626.7322164, - "msecs": 732.2163581848145, - "relativeCreated": 12628.458738327026, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:06,732", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954626.7320225, - "msecs": 732.0225238800049, - "relativeCreated": 12628.264904022217, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:06,732" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954626.732127, - "msecs": 732.1269512176514, - "relativeCreated": 12628.369331359863, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:06,732" - } - ], - "time_consumption": 8.940696716308594e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954627.0334098, - "msecs": 33.409833908081055, - "relativeCreated": 12929.652214050293, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:07,033", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.7325034, - "msecs": 732.5034141540527, - "relativeCreated": 12628.745794296265, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:06,732" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.7336013, - "msecs": 733.6013317108154, - "relativeCreated": 12629.843711853027, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:06,733" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.7354062, - "msecs": 735.4061603546143, - "relativeCreated": 12631.648540496826, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:06,735" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954626.7359338, - "msecs": 735.933780670166, - "relativeCreated": 12632.176160812378, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:06,735" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.736879, - "msecs": 736.8791103363037, - "relativeCreated": 12633.121490478516, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:06,736" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.7806985, - "msecs": 780.6985378265381, - "relativeCreated": 12676.94091796875, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:06,780" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954626.781466, - "msecs": 781.466007232666, - "relativeCreated": 12677.708387374878, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:06,781" - } - ], - "time_consumption": 0.25194382667541504 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954627.0340588, - "msecs": 34.05880928039551, - "relativeCreated": 12930.301189422607, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:07,034", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954627.0338151, - "msecs": 33.81514549255371, - "relativeCreated": 12930.057525634766, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:07,033" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954627.0339515, - "msecs": 33.951520919799805, - "relativeCreated": 12930.193901062012, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:07,033" - } - ], - "time_consumption": 0.00010728836059570312 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954627.0344658, - "msecs": 34.465789794921875, - "relativeCreated": 12930.708169937134, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:07,034", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954627.03423, - "msecs": 34.22999382019043, - "relativeCreated": 12930.472373962402, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:07,034" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954627.0343666, - "msecs": 34.366607666015625, - "relativeCreated": 12930.608987808228, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:07,034" - } - ], - "time_consumption": 9.918212890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954627.3358288, - "msecs": 335.8287811279297, - "relativeCreated": 13232.071161270142, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:07,335", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.0348015, - "msecs": 34.801483154296875, - "relativeCreated": 12931.043863296509, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,034" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.0358756, - "msecs": 35.875558853149414, - "relativeCreated": 12932.117938995361, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,035" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.0384948, - "msecs": 38.49482536315918, - "relativeCreated": 12934.737205505371, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:07,038" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.0391755, - "msecs": 39.17551040649414, - "relativeCreated": 12935.417890548706, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:07,039" - } - ], - "time_consumption": 0.29665327072143555 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954627.3364782, - "msecs": 336.47823333740234, - "relativeCreated": 13232.720613479614, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:07,336", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954627.3362346, - "msecs": 336.23456954956055, - "relativeCreated": 13232.476949691772, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:07,336" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954627.33637, - "msecs": 336.36999130249023, - "relativeCreated": 13232.612371444702, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:07,336" - } - ], - "time_consumption": 0.00010824203491210938 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954627.3368952, - "msecs": 336.895227432251, - "relativeCreated": 13233.137607574463, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:07,336", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954627.3366895, - "msecs": 336.6894721984863, - "relativeCreated": 13232.931852340698, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:07,336" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954627.3367908, - "msecs": 336.7908000946045, - "relativeCreated": 13233.033180236816, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:07,336" - } - ], - "time_consumption": 0.00010442733764648438 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954627.6391, - "msecs": 639.1000747680664, - "relativeCreated": 13535.342454910278, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:07,639", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.3372269, - "msecs": 337.22686767578125, - "relativeCreated": 13233.469247817993, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:07,337" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.3381948, - "msecs": 338.1948471069336, - "relativeCreated": 13234.437227249146, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:07,338" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.3397326, - "msecs": 339.7326469421387, - "relativeCreated": 13235.97502708435, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:07,339" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.340219, - "msecs": 340.21902084350586, - "relativeCreated": 13236.461400985718, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,340" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.3410752, - "msecs": 341.07518196105957, - "relativeCreated": 13237.317562103271, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,341" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.384338, - "msecs": 384.3379020690918, - "relativeCreated": 13280.580282211304, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:07,384" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.384993, - "msecs": 384.9930763244629, - "relativeCreated": 13281.235456466675, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:07,384" - } - ], - "time_consumption": 0.2541069984436035 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954627.639714, - "msecs": 639.7140026092529, - "relativeCreated": 13535.956382751465, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:07,639", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954627.6394646, - "msecs": 639.4646167755127, - "relativeCreated": 13535.706996917725, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:07,639" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954627.6395884, - "msecs": 639.5883560180664, - "relativeCreated": 13535.830736160278, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:07,639" - } - ], - "time_consumption": 0.00012564659118652344 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "__test_brightness__", - "created": 1675954627.9409509, - "msecs": 940.950870513916, - "relativeCreated": 13837.193250656128, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:07,940", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.6399398, - "msecs": 639.9397850036621, - "relativeCreated": 13536.182165145874, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:07,639" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6409671, - "msecs": 640.9671306610107, - "relativeCreated": 13537.209510803223, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:07,640" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6454852, - "msecs": 645.4851627349854, - "relativeCreated": 13541.727542877197, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:07,645" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.6460142, - "msecs": 646.0142135620117, - "relativeCreated": 13542.256593704224, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,646" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.646527, - "msecs": 646.5270519256592, - "relativeCreated": 13542.769432067871, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:07,646" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.646723, - "msecs": 646.7230319976807, - "relativeCreated": 13542.965412139893, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,646" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.646986, - "msecs": 646.9860076904297, - "relativeCreated": 13543.228387832642, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:07,646" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.6471858, - "msecs": 647.1858024597168, - "relativeCreated": 13543.428182601929, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,647" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6473854, - "msecs": 647.3853588104248, - "relativeCreated": 13543.627738952637, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:07,647" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.6475778, - "msecs": 647.5777626037598, - "relativeCreated": 13543.820142745972, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,647" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6478188, - "msecs": 647.8188037872314, - "relativeCreated": 13544.061183929443, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:07,647" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.6480124, - "msecs": 648.0123996734619, - "relativeCreated": 13544.254779815674, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,648" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6482062, - "msecs": 648.2062339782715, - "relativeCreated": 13544.448614120483, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:07,648" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.648393, - "msecs": 648.392915725708, - "relativeCreated": 13544.63529586792, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,648" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6486306, - "msecs": 648.6306190490723, - "relativeCreated": 13544.872999191284, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:07,648" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6488717, - "msecs": 648.871660232544, - "relativeCreated": 13545.114040374756, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:07,648" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.649101, - "msecs": 649.1010189056396, - "relativeCreated": 13545.343399047852, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,649" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6493149, - "msecs": 649.3148803710938, - "relativeCreated": 13545.557260513306, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,649" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6495528, - "msecs": 649.5528221130371, - "relativeCreated": 13545.795202255249, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,649" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6498003, - "msecs": 649.8003005981445, - "relativeCreated": 13546.042680740356, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,649" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6500406, - "msecs": 650.0406265258789, - "relativeCreated": 13546.28300666809, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,650" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6502836, - "msecs": 650.2835750579834, - "relativeCreated": 13546.525955200195, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,650" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.6960282, - "msecs": 696.0282325744629, - "relativeCreated": 13592.270612716675, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:07,696" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.696743, - "msecs": 696.7430114746094, - "relativeCreated": 13592.985391616821, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:07,696" - } - ], - "time_consumption": 0.24420785903930664 - } - ], - "time_consumption": 1.8133070468902588, - "time_start": "2023-02-09 15:57:06,127", - "time_finished": "2023-02-09 15:57:07,940" - }, - "Color temperature test for device and virtual device: zigbee/ffe/livingroom/main_light": { - "name": "__tLogger__", - "msg": "Color temperature test for device and virtual device: zigbee/ffe/livingroom/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 81, - "funcName": "test_color_temp", - "created": 1675954627.9416728, - "msecs": 941.6728019714355, - "relativeCreated": 13837.915182113647, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Color temperature test for device and virtual device: zigbee/ffe/livingroom/main_light", - "asctime": "2023-02-09 15:57:07,941", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 88, - "funcName": "__test_color_temp__", - "created": 1675954628.24337, - "msecs": 243.37005615234375, - "relativeCreated": 14139.612436294556, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:08,243", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.9419556, - "msecs": 941.95556640625, - "relativeCreated": 13838.197946548462, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:07,941" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.9425004, - "msecs": 942.5003528594971, - "relativeCreated": 13838.742733001709, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,942" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9433513, - "msecs": 943.3512687683105, - "relativeCreated": 13839.593648910522, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:07,943" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9439619, - "msecs": 943.9618587493896, - "relativeCreated": 13840.204238891602, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,943" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9854858, - "msecs": 985.4857921600342, - "relativeCreated": 13881.728172302246, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:07,985" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.9859638, - "msecs": 985.9638214111328, - "relativeCreated": 13882.206201553345, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,985" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9863837, - "msecs": 986.3836765289307, - "relativeCreated": 13882.626056671143, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:07,986" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.9867053, - "msecs": 986.7053031921387, - "relativeCreated": 13882.94768333435, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,986" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9874709, - "msecs": 987.4708652496338, - "relativeCreated": 13883.713245391846, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:07,987" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.9877985, - "msecs": 987.7984523773193, - "relativeCreated": 13884.040832519531, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,987" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.988137, - "msecs": 988.1370067596436, - "relativeCreated": 13884.379386901855, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:07,988" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.9884453, - "msecs": 988.4452819824219, - "relativeCreated": 13884.687662124634, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,988" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.988842, - "msecs": 988.8420104980469, - "relativeCreated": 13885.084390640259, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:07,988" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.9891667, - "msecs": 989.1667366027832, - "relativeCreated": 13885.409116744995, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,989" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9894893, - "msecs": 989.4893169403076, - "relativeCreated": 13885.73169708252, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:07,989" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954627.9897962, - "msecs": 989.7961616516113, - "relativeCreated": 13886.038541793823, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:07,989" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.990192, - "msecs": 990.1919364929199, - "relativeCreated": 13886.434316635132, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:07,990" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9905906, - "msecs": 990.5905723571777, - "relativeCreated": 13886.83295249939, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:07,990" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9909556, - "msecs": 990.9555912017822, - "relativeCreated": 13887.197971343994, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,990" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9914393, - "msecs": 991.4393424987793, - "relativeCreated": 13887.681722640991, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,991" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9919415, - "msecs": 991.9414520263672, - "relativeCreated": 13888.18383216858, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,991" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9923983, - "msecs": 992.3982620239258, - "relativeCreated": 13888.640642166138, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,992" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.992854, - "msecs": 992.854118347168, - "relativeCreated": 13889.09649848938, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,992" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954627.9933553, - "msecs": 993.3552742004395, - "relativeCreated": 13889.597654342651, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:07,993" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.0339131, - "msecs": 33.91313552856445, - "relativeCreated": 13930.155515670776, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:08,033" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.034663, - "msecs": 34.66296195983887, - "relativeCreated": 13930.90534210205, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:08,034" - } - ], - "time_consumption": 0.20870709419250488 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954628.243965, - "msecs": 243.96491050720215, - "relativeCreated": 14140.207290649414, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:08,243", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954628.2437196, - "msecs": 243.71957778930664, - "relativeCreated": 14139.961957931519, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:08,243" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954628.2438424, - "msecs": 243.84236335754395, - "relativeCreated": 14140.084743499756, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:08,243" - } - ], - "time_consumption": 0.00012254714965820312 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954628.5453422, - "msecs": 545.342206954956, - "relativeCreated": 14441.584587097168, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:08,545", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954628.2442806, - "msecs": 244.28057670593262, - "relativeCreated": 14140.522956848145, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:08,244" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.2452025, - "msecs": 245.20254135131836, - "relativeCreated": 14141.44492149353, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:08,245" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.2472181, - "msecs": 247.21813201904297, - "relativeCreated": 14143.460512161255, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:08,247" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.2477553, - "msecs": 247.7552890777588, - "relativeCreated": 14143.99766921997, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:08,247" - } - ], - "time_consumption": 0.29758691787719727 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954628.5459328, - "msecs": 545.9327697753906, - "relativeCreated": 14442.175149917603, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:08,545", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954628.5457075, - "msecs": 545.7074642181396, - "relativeCreated": 14441.949844360352, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:08,545" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954628.545833, - "msecs": 545.8331108093262, - "relativeCreated": 14442.075490951538, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:08,545" - } - ], - "time_consumption": 9.965896606445312e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954628.5462453, - "msecs": 546.2453365325928, - "relativeCreated": 14442.487716674805, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:08,546", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954628.5460832, - "msecs": 546.0832118988037, - "relativeCreated": 14442.325592041016, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:08,546" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954628.5461693, - "msecs": 546.1692810058594, - "relativeCreated": 14442.411661148071, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:08,546" - } - ], - "time_consumption": 7.605552673339844e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954628.8484313, - "msecs": 848.4313488006592, - "relativeCreated": 14744.673728942871, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:08,848", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954628.5465052, - "msecs": 546.5052127838135, - "relativeCreated": 14442.747592926025, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:08,546" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.5474968, - "msecs": 547.4967956542969, - "relativeCreated": 14443.739175796509, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:08,547" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.5490077, - "msecs": 549.0076541900635, - "relativeCreated": 14445.250034332275, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:08,549" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954628.5495138, - "msecs": 549.5138168334961, - "relativeCreated": 14445.756196975708, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:08,549" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.5503747, - "msecs": 550.3747463226318, - "relativeCreated": 14446.617126464844, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:08,550" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.5935097, - "msecs": 593.5096740722656, - "relativeCreated": 14489.752054214478, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:08,593" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.594163, - "msecs": 594.1629409790039, - "relativeCreated": 14490.405321121216, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:08,594" - } - ], - "time_consumption": 0.2542684078216553 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954628.84924, - "msecs": 849.2400646209717, - "relativeCreated": 14745.482444763184, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:08,849", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954628.8488874, - "msecs": 848.8874435424805, - "relativeCreated": 14745.129823684692, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:08,848" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954628.8490963, - "msecs": 849.0962982177734, - "relativeCreated": 14745.338678359985, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:08,849" - } - ], - "time_consumption": 0.0001437664031982422 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954628.849698, - "msecs": 849.6980667114258, - "relativeCreated": 14745.940446853638, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:08,849", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954628.8494515, - "msecs": 849.4515419006348, - "relativeCreated": 14745.693922042847, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:08,849" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954628.8496041, - "msecs": 849.6041297912598, - "relativeCreated": 14745.846509933472, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:08,849" - } - ], - "time_consumption": 9.393692016601562e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954629.1510487, - "msecs": 151.0486602783203, - "relativeCreated": 15047.291040420532, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:09,151", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954628.8500578, - "msecs": 850.05784034729, - "relativeCreated": 14746.300220489502, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:08,850" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.8511667, - "msecs": 851.1667251586914, - "relativeCreated": 14747.409105300903, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:08,851" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.854222, - "msecs": 854.2220592498779, - "relativeCreated": 14750.46443939209, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:08,854" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954628.854905, - "msecs": 854.9048900604248, - "relativeCreated": 14751.147270202637, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:08,854" - } - ], - "time_consumption": 0.2961437702178955 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954629.1516535, - "msecs": 151.65352821350098, - "relativeCreated": 15047.895908355713, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:09,151", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954629.1514378, - "msecs": 151.43775939941406, - "relativeCreated": 15047.680139541626, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:09,151" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954629.1515596, - "msecs": 151.55959129333496, - "relativeCreated": 15047.801971435547, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:09,151" - } - ], - "time_consumption": 9.393692016601562e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954629.1519866, - "msecs": 151.98659896850586, - "relativeCreated": 15048.228979110718, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:09,151", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954629.1518035, - "msecs": 151.80349349975586, - "relativeCreated": 15048.045873641968, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:09,151" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954629.1519074, - "msecs": 151.90744400024414, - "relativeCreated": 15048.149824142456, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:09,151" - } - ], - "time_consumption": 7.915496826171875e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954629.4531934, - "msecs": 453.19342613220215, - "relativeCreated": 15349.435806274414, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:09,453", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.1522505, - "msecs": 152.2505283355713, - "relativeCreated": 15048.492908477783, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:09,152" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.1532452, - "msecs": 153.245210647583, - "relativeCreated": 15049.487590789795, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:09,153" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.1547217, - "msecs": 154.72173690795898, - "relativeCreated": 15050.96411705017, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:09,154" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.1552076, - "msecs": 155.20763397216797, - "relativeCreated": 15051.45001411438, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,155" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.156026, - "msecs": 156.02588653564453, - "relativeCreated": 15052.268266677856, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,156" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.2011597, - "msecs": 201.15971565246582, - "relativeCreated": 15097.402095794678, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:09,201" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.2018132, - "msecs": 201.8132209777832, - "relativeCreated": 15098.055601119995, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:09,201" - } - ], - "time_consumption": 0.25138020515441895 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954629.4538012, - "msecs": 453.80115509033203, - "relativeCreated": 15350.043535232544, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:09,453", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954629.4535596, - "msecs": 453.55963706970215, - "relativeCreated": 15349.802017211914, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:09,453" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954629.4537055, - "msecs": 453.7055492401123, - "relativeCreated": 15349.947929382324, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:09,453" - } - ], - "time_consumption": 9.560585021972656e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 105, - "funcName": "__test_color_temp__", - "created": 1675954629.755163, - "msecs": 755.1629543304443, - "relativeCreated": 15651.405334472656, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:09,755", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.4540358, - "msecs": 454.03575897216797, - "relativeCreated": 15350.27813911438, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:09,454" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.4550805, - "msecs": 455.080509185791, - "relativeCreated": 15351.322889328003, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:09,455" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.4600816, - "msecs": 460.0815773010254, - "relativeCreated": 15356.323957443237, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:09,460" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.4605834, - "msecs": 460.5834484100342, - "relativeCreated": 15356.825828552246, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,460" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.4611459, - "msecs": 461.14587783813477, - "relativeCreated": 15357.388257980347, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:09,461" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.4615772, - "msecs": 461.5771770477295, - "relativeCreated": 15357.819557189941, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,461" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.4623888, - "msecs": 462.3887538909912, - "relativeCreated": 15358.631134033203, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,462" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.462956, - "msecs": 462.9559516906738, - "relativeCreated": 15359.198331832886, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,462" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.505515, - "msecs": 505.51509857177734, - "relativeCreated": 15401.75747871399, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:09,505" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.5060697, - "msecs": 506.0696601867676, - "relativeCreated": 15402.31204032898, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,506" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.5066054, - "msecs": 506.6053867340088, - "relativeCreated": 15402.84776687622, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:09,506" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.5070486, - "msecs": 507.0486068725586, - "relativeCreated": 15403.29098701477, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,507" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.507612, - "msecs": 507.6119899749756, - "relativeCreated": 15403.854370117188, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:09,507" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.5080345, - "msecs": 508.03446769714355, - "relativeCreated": 15404.276847839355, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,508" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.5085297, - "msecs": 508.5296630859375, - "relativeCreated": 15404.77204322815, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:09,508" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.5089545, - "msecs": 508.9545249938965, - "relativeCreated": 15405.196905136108, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,508" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.5095348, - "msecs": 509.5348358154297, - "relativeCreated": 15405.777215957642, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:09,509" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.5100732, - "msecs": 510.073184967041, - "relativeCreated": 15406.315565109253, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:09,510" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.5105646, - "msecs": 510.56456565856934, - "relativeCreated": 15406.806945800781, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:09,510" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.5110652, - "msecs": 511.0652446746826, - "relativeCreated": 15407.307624816895, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:09,511" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.5115676, - "msecs": 511.5675926208496, - "relativeCreated": 15407.809972763062, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,511" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.5120313, - "msecs": 512.0313167572021, - "relativeCreated": 15408.273696899414, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,512" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.512502, - "msecs": 512.5019550323486, - "relativeCreated": 15408.74433517456, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,512" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.5129554, - "msecs": 512.9554271697998, - "relativeCreated": 15409.197807312012, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,512" - } - ], - "time_consumption": 0.24220752716064453 - } - ], - "time_consumption": 1.8134901523590088, - "time_start": "2023-02-09 15:57:07,941", - "time_finished": "2023-02-09 15:57:09,755" - }, - "Power On/ Off test for device and virtual device: shellies/ffe/livingroom/main_light": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: shellies/ffe/livingroom/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954629.755853, - "msecs": 755.8529376983643, - "relativeCreated": 15652.095317840576, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: shellies/ffe/livingroom/main_light", - "asctime": "2023-02-09 15:57:09,755", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954629.7563066, - "msecs": 756.3066482543945, - "relativeCreated": 15652.549028396606, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:09,756", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954629.7560933, - "msecs": 756.0932636260986, - "relativeCreated": 15652.33564376831, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:09,756" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954629.7562113, - "msecs": 756.2112808227539, - "relativeCreated": 15652.453660964966, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:09,756" - } - ], - "time_consumption": 9.5367431640625e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954630.0589068, - "msecs": 58.90679359436035, - "relativeCreated": 15955.149173736572, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:10,058", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.7565103, - "msecs": 756.5102577209473, - "relativeCreated": 15652.75263786316, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:09,756" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.7570179, - "msecs": 757.0178508758545, - "relativeCreated": 15653.260231018066, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,757" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.7579126, - "msecs": 757.9126358032227, - "relativeCreated": 15654.155015945435, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:09,757" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.7585063, - "msecs": 758.5062980651855, - "relativeCreated": 15654.748678207397, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,758" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8017457, - "msecs": 801.7456531524658, - "relativeCreated": 15697.988033294678, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:09,801" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.8023, - "msecs": 802.299976348877, - "relativeCreated": 15698.542356491089, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,802" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8028178, - "msecs": 802.8178215026855, - "relativeCreated": 15699.060201644897, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:09,802" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.803242, - "msecs": 803.2419681549072, - "relativeCreated": 15699.48434829712, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,803" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8038101, - "msecs": 803.8101196289062, - "relativeCreated": 15700.052499771118, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:09,803" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.8042285, - "msecs": 804.2285442352295, - "relativeCreated": 15700.470924377441, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,804" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8046706, - "msecs": 804.6705722808838, - "relativeCreated": 15700.912952423096, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:09,804" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.805119, - "msecs": 805.1190376281738, - "relativeCreated": 15701.361417770386, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,805" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8056767, - "msecs": 805.6766986846924, - "relativeCreated": 15701.919078826904, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:09,805" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.8060942, - "msecs": 806.0941696166992, - "relativeCreated": 15702.336549758911, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,806" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8065305, - "msecs": 806.5304756164551, - "relativeCreated": 15702.772855758667, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:09,806" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954629.806937, - "msecs": 806.9369792938232, - "relativeCreated": 15703.179359436035, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:09,806" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8074906, - "msecs": 807.4905872344971, - "relativeCreated": 15703.732967376709, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:09,807" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8080363, - "msecs": 808.0363273620605, - "relativeCreated": 15704.278707504272, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:09,808" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.808535, - "msecs": 808.535099029541, - "relativeCreated": 15704.777479171753, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,808" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8090177, - "msecs": 809.0176582336426, - "relativeCreated": 15705.260038375854, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,809" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8095794, - "msecs": 809.5793724060059, - "relativeCreated": 15705.821752548218, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,809" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8101673, - "msecs": 810.1673126220703, - "relativeCreated": 15706.409692764282, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,810" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8106544, - "msecs": 810.6544017791748, - "relativeCreated": 15706.896781921387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,810" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.8111358, - "msecs": 811.1357688903809, - "relativeCreated": 15707.378149032593, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:09,811" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.849743, - "msecs": 849.7428894042969, - "relativeCreated": 15745.985269546509, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:09,849" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954629.850498, - "msecs": 850.4979610443115, - "relativeCreated": 15746.740341186523, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:09,850" - } - ], - "time_consumption": 0.20840883255004883 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954630.059626, - "msecs": 59.626102447509766, - "relativeCreated": 15955.868482589722, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:10,059", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954630.0593638, - "msecs": 59.36384201049805, - "relativeCreated": 15955.60622215271, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:10,059" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954630.0595095, - "msecs": 59.5095157623291, - "relativeCreated": 15955.751895904541, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:10,059" - } - ], - "time_consumption": 0.00011658668518066406 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954630.0599964, - "msecs": 59.99636650085449, - "relativeCreated": 15956.238746643066, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:10,059", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954630.0598044, - "msecs": 59.804439544677734, - "relativeCreated": 15956.04681968689, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:10,059" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954630.0599058, - "msecs": 59.9057674407959, - "relativeCreated": 15956.148147583008, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:10,059" - } - ], - "time_consumption": 9.059906005859375e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954630.3613591, - "msecs": 361.3591194152832, - "relativeCreated": 16257.601499557495, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:10,361", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.0602725, - "msecs": 60.2724552154541, - "relativeCreated": 15956.514835357666, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/main_light/state and payload false", - "asctime": "2023-02-09 15:57:10,060" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.061343, - "msecs": 61.34295463562012, - "relativeCreated": 15957.585334777832, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:10,061" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.0630677, - "msecs": 63.06767463684082, - "relativeCreated": 15959.310054779053, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:10,063" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.063529, - "msecs": 63.529014587402344, - "relativeCreated": 15959.771394729614, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:10,063" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.0645335, - "msecs": 64.53347206115723, - "relativeCreated": 15960.77585220337, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:10,064" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1121433, - "msecs": 112.14327812194824, - "relativeCreated": 16008.38565826416, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,112" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.112797, - "msecs": 112.79702186584473, - "relativeCreated": 16009.039402008057, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,112" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1135037, - "msecs": 113.50369453430176, - "relativeCreated": 16009.746074676514, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,113" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.1139991, - "msecs": 113.9991283416748, - "relativeCreated": 16010.241508483887, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,113" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1147182, - "msecs": 114.71819877624512, - "relativeCreated": 16010.960578918457, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,114" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.1151552, - "msecs": 115.15522003173828, - "relativeCreated": 16011.39760017395, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,115" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.115618, - "msecs": 115.61799049377441, - "relativeCreated": 16011.860370635986, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,115" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.11603, - "msecs": 116.02997779846191, - "relativeCreated": 16012.272357940674, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,116" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1166012, - "msecs": 116.60122871398926, - "relativeCreated": 16012.843608856201, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,116" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.1170168, - "msecs": 117.01679229736328, - "relativeCreated": 16013.259172439575, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,117" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1174777, - "msecs": 117.4776554107666, - "relativeCreated": 16013.720035552979, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,117" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.1178982, - "msecs": 117.89822578430176, - "relativeCreated": 16014.140605926514, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,117" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.118458, - "msecs": 118.45803260803223, - "relativeCreated": 16014.700412750244, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:10,118" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1190119, - "msecs": 119.01187896728516, - "relativeCreated": 16015.254259109497, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:10,119" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.119512, - "msecs": 119.51208114624023, - "relativeCreated": 16015.754461288452, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,119" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1199846, - "msecs": 119.98462677001953, - "relativeCreated": 16016.227006912231, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,119" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1204565, - "msecs": 120.45645713806152, - "relativeCreated": 16016.698837280273, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,120" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1209104, - "msecs": 120.9104061126709, - "relativeCreated": 16017.152786254883, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,120" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1213841, - "msecs": 121.3841438293457, - "relativeCreated": 16017.626523971558, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,121" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1614938, - "msecs": 161.49377822875977, - "relativeCreated": 16057.736158370972, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,161" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.162134, - "msecs": 162.13393211364746, - "relativeCreated": 16058.37631225586, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:10,162" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.1631362, - "msecs": 163.13624382019043, - "relativeCreated": 16059.378623962402, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:10,163" - } - ], - "time_consumption": 0.19822287559509277 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954630.362033, - "msecs": 362.0328903198242, - "relativeCreated": 16258.275270462036, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:10,362", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954630.3617902, - "msecs": 361.7901802062988, - "relativeCreated": 16258.03256034851, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:10,361" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954630.3619256, - "msecs": 361.9256019592285, - "relativeCreated": 16258.16798210144, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:10,361" - } - ], - "time_consumption": 0.00010728836059570312 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954630.362391, - "msecs": 362.39099502563477, - "relativeCreated": 16258.633375167847, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:10,362", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954630.3622038, - "msecs": 362.20383644104004, - "relativeCreated": 16258.446216583252, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:10,362" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954630.3623028, - "msecs": 362.3027801513672, - "relativeCreated": 16258.54516029358, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:10,362" - } - ], - "time_consumption": 8.821487426757812e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954630.6650105, - "msecs": 665.0104522705078, - "relativeCreated": 16561.25283241272, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:10,665", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.3626223, - "msecs": 362.6222610473633, - "relativeCreated": 16258.864641189575, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:10,362" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.363192, - "msecs": 363.192081451416, - "relativeCreated": 16259.434461593628, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,363" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.3640568, - "msecs": 364.0568256378174, - "relativeCreated": 16260.29920578003, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:10,364" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.364645, - "msecs": 364.64500427246094, - "relativeCreated": 16260.887384414673, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,364" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4056082, - "msecs": 405.6081771850586, - "relativeCreated": 16301.85055732727, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:10,405" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.406188, - "msecs": 406.1880111694336, - "relativeCreated": 16302.430391311646, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,406" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.406759, - "msecs": 406.75902366638184, - "relativeCreated": 16303.001403808594, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:10,406" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.4071803, - "msecs": 407.1803092956543, - "relativeCreated": 16303.422689437866, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,407" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.407755, - "msecs": 407.75489807128906, - "relativeCreated": 16303.997278213501, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:10,407" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.408176, - "msecs": 408.1759452819824, - "relativeCreated": 16304.418325424194, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,408" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4086192, - "msecs": 408.6191654205322, - "relativeCreated": 16304.861545562744, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:10,408" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.409026, - "msecs": 409.0259075164795, - "relativeCreated": 16305.268287658691, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,409" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4095955, - "msecs": 409.5954895019531, - "relativeCreated": 16305.837869644165, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:10,409" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.4100103, - "msecs": 410.01033782958984, - "relativeCreated": 16306.252717971802, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,410" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4104426, - "msecs": 410.442590713501, - "relativeCreated": 16306.684970855713, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:10,410" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.4108477, - "msecs": 410.84766387939453, - "relativeCreated": 16307.090044021606, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,410" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4113774, - "msecs": 411.3774299621582, - "relativeCreated": 16307.61981010437, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:10,411" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4119089, - "msecs": 411.9088649749756, - "relativeCreated": 16308.151245117188, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:10,411" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4124074, - "msecs": 412.40739822387695, - "relativeCreated": 16308.649778366089, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,412" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4128718, - "msecs": 412.8718376159668, - "relativeCreated": 16309.114217758179, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,412" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4133742, - "msecs": 413.3741855621338, - "relativeCreated": 16309.616565704346, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,413" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4138324, - "msecs": 413.832426071167, - "relativeCreated": 16310.074806213379, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,413" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4142866, - "msecs": 414.28661346435547, - "relativeCreated": 16310.528993606567, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,414" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4147391, - "msecs": 414.73913192749023, - "relativeCreated": 16310.981512069702, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,414" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4536333, - "msecs": 453.63330841064453, - "relativeCreated": 16349.875688552856, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:10,453" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.4543767, - "msecs": 454.3766975402832, - "relativeCreated": 16350.619077682495, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:10,454" - } - ], - "time_consumption": 0.2106337547302246 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954630.6656702, - "msecs": 665.6701564788818, - "relativeCreated": 16561.912536621094, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:10,665", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954630.6654162, - "msecs": 665.4162406921387, - "relativeCreated": 16561.65862083435, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:10,665" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954630.6655736, - "msecs": 665.5735969543457, - "relativeCreated": 16561.815977096558, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:10,665" - } - ], - "time_consumption": 9.655952453613281e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954630.6659865, - "msecs": 665.9865379333496, - "relativeCreated": 16562.22891807556, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:10,665", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954630.6658225, - "msecs": 665.8225059509277, - "relativeCreated": 16562.06488609314, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:10,665" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954630.6659088, - "msecs": 665.9088134765625, - "relativeCreated": 16562.151193618774, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:10,665" - } - ], - "time_consumption": 7.772445678710938e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954630.967179, - "msecs": 967.1790599822998, - "relativeCreated": 16863.42144012451, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:10,967", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.6662288, - "msecs": 666.2287712097168, - "relativeCreated": 16562.47115135193, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/main_light/state and payload false", - "asctime": "2023-02-09 15:57:10,666" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.6671934, - "msecs": 667.1934127807617, - "relativeCreated": 16563.435792922974, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:10,667" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.6686277, - "msecs": 668.6277389526367, - "relativeCreated": 16564.87011909485, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:10,668" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.6690657, - "msecs": 669.0657138824463, - "relativeCreated": 16565.30809402466, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:10,669" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.6699686, - "msecs": 669.9686050415039, - "relativeCreated": 16566.210985183716, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:10,669" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.714269, - "msecs": 714.2689228057861, - "relativeCreated": 16610.511302947998, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,714" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.714821, - "msecs": 714.8211002349854, - "relativeCreated": 16611.063480377197, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,714" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7153454, - "msecs": 715.3453826904297, - "relativeCreated": 16611.58776283264, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,715" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.7157705, - "msecs": 715.7704830169678, - "relativeCreated": 16612.01286315918, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,715" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7163694, - "msecs": 716.3693904876709, - "relativeCreated": 16612.611770629883, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,716" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.7167916, - "msecs": 716.7916297912598, - "relativeCreated": 16613.03400993347, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,716" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7172635, - "msecs": 717.2634601593018, - "relativeCreated": 16613.505840301514, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,717" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.7176783, - "msecs": 717.6783084869385, - "relativeCreated": 16613.92068862915, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,717" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7182584, - "msecs": 718.2583808898926, - "relativeCreated": 16614.500761032104, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,718" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.7186778, - "msecs": 718.6777591705322, - "relativeCreated": 16614.920139312744, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,718" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7191153, - "msecs": 719.1152572631836, - "relativeCreated": 16615.357637405396, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:10,719" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.7195253, - "msecs": 719.5253372192383, - "relativeCreated": 16615.76771736145, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,719" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7200856, - "msecs": 720.085620880127, - "relativeCreated": 16616.32800102234, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:10,720" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7206082, - "msecs": 720.6082344055176, - "relativeCreated": 16616.85061454773, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:10,720" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7211297, - "msecs": 721.1296558380127, - "relativeCreated": 16617.372035980225, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,721" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7216125, - "msecs": 721.6124534606934, - "relativeCreated": 16617.854833602905, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,721" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.722069, - "msecs": 722.0690250396729, - "relativeCreated": 16618.311405181885, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,722" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7225235, - "msecs": 722.5234508514404, - "relativeCreated": 16618.765830993652, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,722" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.722975, - "msecs": 722.9750156402588, - "relativeCreated": 16619.21739578247, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,722" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.761523, - "msecs": 761.5230083465576, - "relativeCreated": 16657.76538848877, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,761" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7645097, - "msecs": 764.5096778869629, - "relativeCreated": 16660.752058029175, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:10,764" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.7651622, - "msecs": 765.1622295379639, - "relativeCreated": 16661.404609680176, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:10,765" - } - ], - "time_consumption": 0.20201683044433594 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954630.9678147, - "msecs": 967.8146839141846, - "relativeCreated": 16864.057064056396, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:10,967", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954630.9675624, - "msecs": 967.5624370574951, - "relativeCreated": 16863.804817199707, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:10,967" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954630.9677174, - "msecs": 967.7174091339111, - "relativeCreated": 16863.959789276123, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:10,967" - } - ], - "time_consumption": 9.72747802734375e-05 - } - ], - "time_consumption": 1.2119617462158203, - "time_start": "2023-02-09 15:57:09,755", - "time_finished": "2023-02-09 15:57:10,967" - }, - "Brightness synchronisation test: videv/ffe/livingroom/floorlamp": { - "name": "__tLogger__", - "msg": "Brightness synchronisation test: videv/ffe/livingroom/floorlamp", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "test_brightness_sync", - "created": 1675954630.9682794, - "msecs": 968.2793617248535, - "relativeCreated": 16864.521741867065, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness synchronisation test: videv/ffe/livingroom/floorlamp", - "asctime": "2023-02-09 15:57:10,968", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions for master device '%s' (Power on)", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 48, - "funcName": "__test_brightness_sync__", - "created": 1675954631.2709007, - "msecs": 270.9007263183594, - "relativeCreated": 17167.14310646057, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions for master device 'True' (Power on)", - "asctime": "2023-02-09 15:57:11,270", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.9685328, - "msecs": 968.5328006744385, - "relativeCreated": 16864.77518081665, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:10,968" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954630.9690645, - "msecs": 969.064474105835, - "relativeCreated": 16865.306854248047, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:10,969" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.969936, - "msecs": 969.9358940124512, - "relativeCreated": 16866.178274154663, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:10,969" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954630.970529, - "msecs": 970.5290794372559, - "relativeCreated": 16866.771459579468, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:10,970" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0135214, - "msecs": 13.521432876586914, - "relativeCreated": 16909.7638130188, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:11,013" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.014124, - "msecs": 14.123916625976562, - "relativeCreated": 16910.36629676819, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,014" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0146585, - "msecs": 14.658451080322266, - "relativeCreated": 16910.900831222534, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:11,014" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.015085, - "msecs": 15.084981918334961, - "relativeCreated": 16911.327362060547, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,015" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0156753, - "msecs": 15.67530632019043, - "relativeCreated": 16911.917686462402, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:11,015" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.0160573, - "msecs": 16.057252883911133, - "relativeCreated": 16912.299633026123, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,016" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0164797, - "msecs": 16.4797306060791, - "relativeCreated": 16912.72211074829, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:11,016" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.0168476, - "msecs": 16.847610473632812, - "relativeCreated": 16913.089990615845, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,016" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0173697, - "msecs": 17.369747161865234, - "relativeCreated": 16913.612127304077, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:11,017" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.0177486, - "msecs": 17.748594284057617, - "relativeCreated": 16913.99097442627, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,017" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0181496, - "msecs": 18.149614334106445, - "relativeCreated": 16914.39199447632, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:11,018" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.018535, - "msecs": 18.53489875793457, - "relativeCreated": 16914.777278900146, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,018" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0190132, - "msecs": 19.013166427612305, - "relativeCreated": 16915.255546569824, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:11,019" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0195115, - "msecs": 19.51146125793457, - "relativeCreated": 16915.753841400146, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:11,019" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0200129, - "msecs": 20.012855529785156, - "relativeCreated": 16916.255235671997, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,020" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0204859, - "msecs": 20.485877990722656, - "relativeCreated": 16916.728258132935, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,020" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0209575, - "msecs": 20.957469940185547, - "relativeCreated": 16917.199850082397, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,020" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0214489, - "msecs": 21.448850631713867, - "relativeCreated": 16917.691230773926, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,021" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0219033, - "msecs": 21.903276443481445, - "relativeCreated": 16918.145656585693, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,021" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0223598, - "msecs": 22.359848022460938, - "relativeCreated": 16918.602228164673, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,022" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0618868, - "msecs": 61.88678741455078, - "relativeCreated": 16958.129167556763, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:11,061" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.0626311, - "msecs": 62.63113021850586, - "relativeCreated": 16958.873510360718, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:11,062" - } - ], - "time_consumption": 0.20826959609985352 - }, - { - "name": "__tLogger__", - "msg": "Changing master device brightness to '%d'", - "args": [ - 35 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 56, - "funcName": "__test_brightness_sync__", - "created": 1675954631.5725336, - "msecs": 572.5336074829102, - "relativeCreated": 17468.775987625122, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device brightness to '35'", - "asctime": "2023-02-09 15:57:11,572", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/brightness", - "35" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.2714102, - "msecs": 271.4102268218994, - "relativeCreated": 17167.65260696411, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness and payload 35", - "asctime": "2023-02-09 15:57:11,271" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/brightness", - "b'35'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.2724304, - "msecs": 272.430419921875, - "relativeCreated": 17168.672800064087, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'35'", - "asctime": "2023-02-09 15:57:11,272" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"brightness\": 90.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.2757754, - "msecs": 275.7754325866699, - "relativeCreated": 17172.017812728882, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"brightness\": 90.0}'", - "asctime": "2023-02-09 15:57:11,275" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.2762454, - "msecs": 276.2453556060791, - "relativeCreated": 17172.48773574829, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,276" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"brightness\": 90.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.2767718, - "msecs": 276.77178382873535, - "relativeCreated": 17173.014163970947, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"brightness\": 90.0}'", - "asctime": "2023-02-09 15:57:11,276" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.2772303, - "msecs": 277.23026275634766, - "relativeCreated": 17173.47264289856, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,277" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"brightness\": 90.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.2778032, - "msecs": 277.8031826019287, - "relativeCreated": 17174.04556274414, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"brightness\": 90.0}'", - "asctime": "2023-02-09 15:57:11,277" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.2782147, - "msecs": 278.214693069458, - "relativeCreated": 17174.45707321167, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,278" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"brightness\": 90.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.2786777, - "msecs": 278.67770195007324, - "relativeCreated": 17174.920082092285, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"brightness\": 90.0}'", - "asctime": "2023-02-09 15:57:11,278" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.279083, - "msecs": 279.0830135345459, - "relativeCreated": 17175.325393676758, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,279" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"brightness\": 90.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.279621, - "msecs": 279.620885848999, - "relativeCreated": 17175.86326599121, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"brightness\": 90.0}'", - "asctime": "2023-02-09 15:57:11,279" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.2800322, - "msecs": 280.0321578979492, - "relativeCreated": 17176.27453804016, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,280" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"brightness\": 90.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.280465, - "msecs": 280.46488761901855, - "relativeCreated": 17176.70726776123, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"brightness\": 90.0}'", - "asctime": "2023-02-09 15:57:11,280" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.2808962, - "msecs": 280.8961868286133, - "relativeCreated": 17177.138566970825, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,280" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.281451, - "msecs": 281.4509868621826, - "relativeCreated": 17177.693367004395, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,281" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.2819402, - "msecs": 281.940221786499, - "relativeCreated": 17178.18260192871, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,281" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.2824242, - "msecs": 282.4242115020752, - "relativeCreated": 17178.666591644287, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,282" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.282893, - "msecs": 282.89294242858887, - "relativeCreated": 17179.1353225708, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,282" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.2833455, - "msecs": 283.34546089172363, - "relativeCreated": 17179.587841033936, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,283" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.283799, - "msecs": 283.7989330291748, - "relativeCreated": 17180.041313171387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,283" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/brightness", - "b'35.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.3255298, - "msecs": 325.5298137664795, - "relativeCreated": 17221.77219390869, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'35.0'", - "asctime": "2023-02-09 15:57:11,325" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.326229, - "msecs": 326.2290954589844, - "relativeCreated": 17222.471475601196, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:11,326" - } - ], - "time_consumption": 0.24630451202392578 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness is correct (Content %s and Type is %s).", - "args": [ - "35", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.573274, - "msecs": 573.2738971710205, - "relativeCreated": 17469.516277313232, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness is correct (Content 35 and Type is ).", - "asctime": "2023-02-09 15:57:11,573", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.5729547, - "msecs": 572.9546546936035, - "relativeCreated": 17469.197034835815, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness): 35 ()", - "asctime": "2023-02-09 15:57:11,572" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness", - "=", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.573132, - "msecs": 573.1320381164551, - "relativeCreated": 17469.374418258667, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness): result = 35 ()", - "asctime": "2023-02-09 15:57:11,573" - } - ], - "time_consumption": 0.0001418590545654297 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness is correct (Content %s and Type is %s).", - "args": [ - "35", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.5736818, - "msecs": 573.6818313598633, - "relativeCreated": 17469.924211502075, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness is correct (Content 35 and Type is ).", - "asctime": "2023-02-09 15:57:11,573", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.5734603, - "msecs": 573.4603404998779, - "relativeCreated": 17469.70272064209, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness): 35 ()", - "asctime": "2023-02-09 15:57:11,573" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness", - "=", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.5735927, - "msecs": 573.5926628112793, - "relativeCreated": 17469.83504295349, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness): result = 35 ()", - "asctime": "2023-02-09 15:57:11,573" - } - ], - "time_consumption": 8.916854858398438e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness is correct (Content %s and Type is %s).", - "args": [ - "35", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.574021, - "msecs": 574.0211009979248, - "relativeCreated": 17470.263481140137, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness is correct (Content 35 and Type is ).", - "asctime": "2023-02-09 15:57:11,574", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.5738635, - "msecs": 573.8635063171387, - "relativeCreated": 17470.10588645935, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness): 35 ()", - "asctime": "2023-02-09 15:57:11,573" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness", - "=", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.5739465, - "msecs": 573.946475982666, - "relativeCreated": 17470.188856124878, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness): result = 35 ()", - "asctime": "2023-02-09 15:57:11,573" - } - ], - "time_consumption": 7.462501525878906e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness is correct (Content %s and Type is %s).", - "args": [ - "35", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.574323, - "msecs": 574.3229389190674, - "relativeCreated": 17470.56531906128, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness is correct (Content 35 and Type is ).", - "asctime": "2023-02-09 15:57:11,574", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.57416, - "msecs": 574.160099029541, - "relativeCreated": 17470.402479171753, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness): 35 ()", - "asctime": "2023-02-09 15:57:11,574" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness", - "=", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.574242, - "msecs": 574.242115020752, - "relativeCreated": 17470.484495162964, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness): result = 35 ()", - "asctime": "2023-02-09 15:57:11,574" - } - ], - "time_consumption": 8.082389831542969e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness is correct (Content %s and Type is %s).", - "args": [ - "35", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.574619, - "msecs": 574.6190547943115, - "relativeCreated": 17470.861434936523, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness is correct (Content 35 and Type is ).", - "asctime": "2023-02-09 15:57:11,574", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.5744503, - "msecs": 574.4502544403076, - "relativeCreated": 17470.69263458252, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness): 35 ()", - "asctime": "2023-02-09 15:57:11,574" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness", - "=", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.5745463, - "msecs": 574.5463371276855, - "relativeCreated": 17470.788717269897, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness): result = 35 ()", - "asctime": "2023-02-09 15:57:11,574" - } - ], - "time_consumption": 7.271766662597656e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness is correct (Content %s and Type is %s).", - "args": [ - "35", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.5749066, - "msecs": 574.906587600708, - "relativeCreated": 17471.14896774292, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness is correct (Content 35 and Type is ).", - "asctime": "2023-02-09 15:57:11,574", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.5747442, - "msecs": 574.7442245483398, - "relativeCreated": 17470.98660469055, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness): 35 ()", - "asctime": "2023-02-09 15:57:11,574" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness", - "=", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.5748334, - "msecs": 574.8333930969238, - "relativeCreated": 17471.075773239136, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness): result = 35 ()", - "asctime": "2023-02-09 15:57:11,574" - } - ], - "time_consumption": 7.319450378417969e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing master device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 56, - "funcName": "__test_brightness_sync__", - "created": 1675954631.8771155, - "msecs": 877.1154880523682, - "relativeCreated": 17773.35786819458, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device brightness to '50'", - "asctime": "2023-02-09 15:57:11,877", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.575157, - "msecs": 575.1569271087646, - "relativeCreated": 17471.399307250977, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/brightness and payload 50", - "asctime": "2023-02-09 15:57:11,575" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5760968, - "msecs": 576.096773147583, - "relativeCreated": 17472.339153289795, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:11,576" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5795155, - "msecs": 579.5154571533203, - "relativeCreated": 17475.757837295532, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:11,579" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.5799854, - "msecs": 579.9853801727295, - "relativeCreated": 17476.22776031494, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,579" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5804868, - "msecs": 580.4867744445801, - "relativeCreated": 17476.729154586792, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:11,580" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.5809216, - "msecs": 580.9216499328613, - "relativeCreated": 17477.164030075073, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,580" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5815191, - "msecs": 581.5191268920898, - "relativeCreated": 17477.7615070343, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:11,581" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.5819356, - "msecs": 581.9356441497803, - "relativeCreated": 17478.178024291992, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,581" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5823798, - "msecs": 582.3798179626465, - "relativeCreated": 17478.62219810486, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:11,582" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.582799, - "msecs": 582.798957824707, - "relativeCreated": 17479.04133796692, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,582" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.583345, - "msecs": 583.3449363708496, - "relativeCreated": 17479.58731651306, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:11,583" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.5837696, - "msecs": 583.7695598602295, - "relativeCreated": 17480.01194000244, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,583" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5842025, - "msecs": 584.2025279998779, - "relativeCreated": 17480.44490814209, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:11,584" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.5846057, - "msecs": 584.6056938171387, - "relativeCreated": 17480.84807395935, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,584" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.585171, - "msecs": 585.1709842681885, - "relativeCreated": 17481.4133644104, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,585" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5856664, - "msecs": 585.6664180755615, - "relativeCreated": 17481.908798217773, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,585" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5861385, - "msecs": 586.1384868621826, - "relativeCreated": 17482.380867004395, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,586" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5866263, - "msecs": 586.6262912750244, - "relativeCreated": 17482.868671417236, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,586" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5870755, - "msecs": 587.0754718780518, - "relativeCreated": 17483.317852020264, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,587" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.5875335, - "msecs": 587.5334739685059, - "relativeCreated": 17483.775854110718, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,587" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.6295462, - "msecs": 629.5461654663086, - "relativeCreated": 17525.78854560852, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:11,629" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.6306958, - "msecs": 630.6958198547363, - "relativeCreated": 17526.93819999695, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:11,630" - } - ], - "time_consumption": 0.24641966819763184 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.8778105, - "msecs": 877.8104782104492, - "relativeCreated": 17774.05285835266, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:11,877", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.8775618, - "msecs": 877.5618076324463, - "relativeCreated": 17773.80418777466, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness): 50 ()", - "asctime": "2023-02-09 15:57:11,877" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.8777006, - "msecs": 877.7005672454834, - "relativeCreated": 17773.942947387695, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:11,877" - } - ], - "time_consumption": 0.00010991096496582031 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.878179, - "msecs": 878.1790733337402, - "relativeCreated": 17774.421453475952, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:11,878", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.8779895, - "msecs": 877.9895305633545, - "relativeCreated": 17774.231910705566, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness): 50 ()", - "asctime": "2023-02-09 15:57:11,877" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.8780901, - "msecs": 878.0901432037354, - "relativeCreated": 17774.332523345947, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:11,878" - } - ], - "time_consumption": 8.893013000488281e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.878545, - "msecs": 878.5450458526611, - "relativeCreated": 17774.787425994873, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:11,878", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.8783624, - "msecs": 878.3624172210693, - "relativeCreated": 17774.60479736328, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness): 50 ()", - "asctime": "2023-02-09 15:57:11,878" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.8784578, - "msecs": 878.45778465271, - "relativeCreated": 17774.700164794922, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:11,878" - } - ], - "time_consumption": 8.726119995117188e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.8788886, - "msecs": 878.8886070251465, - "relativeCreated": 17775.13098716736, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:11,878", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.878697, - "msecs": 878.6969184875488, - "relativeCreated": 17774.93929862976, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness): 50 ()", - "asctime": "2023-02-09 15:57:11,878" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.878803, - "msecs": 878.803014755249, - "relativeCreated": 17775.04539489746, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:11,878" - } - ], - "time_consumption": 8.559226989746094e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.879223, - "msecs": 879.223108291626, - "relativeCreated": 17775.465488433838, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:11,879", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.87905, - "msecs": 879.0500164031982, - "relativeCreated": 17775.29239654541, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness): 50 ()", - "asctime": "2023-02-09 15:57:11,879" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.8791409, - "msecs": 879.1408538818359, - "relativeCreated": 17775.383234024048, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:11,879" - } - ], - "time_consumption": 8.225440979003906e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954631.8795373, - "msecs": 879.5373439788818, - "relativeCreated": 17775.779724121094, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:11,879", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954631.8793657, - "msecs": 879.3656826019287, - "relativeCreated": 17775.60806274414, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness): 50 ()", - "asctime": "2023-02-09 15:57:11,879" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954631.8794553, - "msecs": 879.4553279876709, - "relativeCreated": 17775.697708129883, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:11,879" - } - ], - "time_consumption": 8.20159912109375e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting preconditions for master device '%s' (Power off)", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 64, - "funcName": "__test_brightness_sync__", - "created": 1675954632.1808043, - "msecs": 180.80425262451172, - "relativeCreated": 18077.046632766724, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting preconditions for master device 'False' (Power off)", - "asctime": "2023-02-09 15:57:12,180", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.8797717, - "msecs": 879.7717094421387, - "relativeCreated": 17776.01408958435, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:11,879" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8808954, - "msecs": 880.8953762054443, - "relativeCreated": 17777.137756347656, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:11,880" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8856955, - "msecs": 885.6954574584961, - "relativeCreated": 17781.937837600708, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:11,885" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.886177, - "msecs": 886.1770629882812, - "relativeCreated": 17782.419443130493, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,886" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8866997, - "msecs": 886.6996765136719, - "relativeCreated": 17782.942056655884, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:11,886" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.8871214, - "msecs": 887.1214389801025, - "relativeCreated": 17783.363819122314, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,887" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.887688, - "msecs": 887.6879215240479, - "relativeCreated": 17783.93030166626, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:11,887" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.8881083, - "msecs": 888.1082534790039, - "relativeCreated": 17784.350633621216, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,888" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8885567, - "msecs": 888.556718826294, - "relativeCreated": 17784.799098968506, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:11,888" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.8889854, - "msecs": 888.9853954315186, - "relativeCreated": 17785.22777557373, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,888" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8895586, - "msecs": 889.5585536956787, - "relativeCreated": 17785.80093383789, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:11,889" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.8899748, - "msecs": 889.97483253479, - "relativeCreated": 17786.217212677002, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,889" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.890412, - "msecs": 890.4120922088623, - "relativeCreated": 17786.654472351074, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:11,890" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954631.890823, - "msecs": 890.8228874206543, - "relativeCreated": 17787.065267562866, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:11,890" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8913736, - "msecs": 891.3736343383789, - "relativeCreated": 17787.61601448059, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:11,891" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8919196, - "msecs": 891.9196128845215, - "relativeCreated": 17788.161993026733, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:11,891" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.892416, - "msecs": 892.4160003662109, - "relativeCreated": 17788.658380508423, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,892" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8929198, - "msecs": 892.9197788238525, - "relativeCreated": 17789.162158966064, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,892" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8934336, - "msecs": 893.4335708618164, - "relativeCreated": 17789.67595100403, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,893" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.893927, - "msecs": 893.9270973205566, - "relativeCreated": 17790.16947746277, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,893" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8944228, - "msecs": 894.4227695465088, - "relativeCreated": 17790.66514968872, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,894" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.8949194, - "msecs": 894.9193954467773, - "relativeCreated": 17791.16177558899, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:11,894" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.9362836, - "msecs": 936.2835884094238, - "relativeCreated": 17832.525968551636, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:11,936" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954631.9369807, - "msecs": 936.9807243347168, - "relativeCreated": 17833.22310447693, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:11,936" - } - ], - "time_consumption": 0.24382352828979492 - } - ], - "time_consumption": 1.2125248908996582, - "time_start": "2023-02-09 15:57:10,968", - "time_finished": "2023-02-09 15:57:12,180" - }, - "Color temperature synchronisation test: videv/ffe/livingroom/floorlamp": { - "name": "__tLogger__", - "msg": "Color temperature synchronisation test: videv/ffe/livingroom/floorlamp", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 67, - "funcName": "test_color_temp_sync", - "created": 1675954632.1815796, - "msecs": 181.57958984375, - "relativeCreated": 18077.821969985962, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Color temperature synchronisation test: videv/ffe/livingroom/floorlamp", - "asctime": "2023-02-09 15:57:12,181", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions for master device '%s' (Power on)", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 73, - "funcName": "__test_color_temp_sync__", - "created": 1675954632.4833443, - "msecs": 483.34431648254395, - "relativeCreated": 18379.586696624756, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions for master device 'True' (Power on)", - "asctime": "2023-02-09 15:57:12,483", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.1818736, - "msecs": 181.87355995178223, - "relativeCreated": 18078.115940093994, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:12,181" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.182444, - "msecs": 182.44409561157227, - "relativeCreated": 18078.686475753784, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,182" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.1833186, - "msecs": 183.3186149597168, - "relativeCreated": 18079.56099510193, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:12,183" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.1839073, - "msecs": 183.90727043151855, - "relativeCreated": 18080.14965057373, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,183" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.2256024, - "msecs": 225.602388381958, - "relativeCreated": 18121.84476852417, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:12,225" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.2261543, - "msecs": 226.15432739257812, - "relativeCreated": 18122.39670753479, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,226" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.22668, - "msecs": 226.68004035949707, - "relativeCreated": 18122.92242050171, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:12,226" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.2271054, - "msecs": 227.10537910461426, - "relativeCreated": 18123.347759246826, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,227" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.227717, - "msecs": 227.71692276000977, - "relativeCreated": 18123.95930290222, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:12,227" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.2281427, - "msecs": 228.14273834228516, - "relativeCreated": 18124.385118484497, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,228" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.2285895, - "msecs": 228.58953475952148, - "relativeCreated": 18124.831914901733, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:12,228" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.2289977, - "msecs": 228.99770736694336, - "relativeCreated": 18125.240087509155, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,228" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.2296104, - "msecs": 229.61044311523438, - "relativeCreated": 18125.852823257446, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:12,229" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.2300563, - "msecs": 230.0562858581543, - "relativeCreated": 18126.298666000366, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,230" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.230547, - "msecs": 230.5469512939453, - "relativeCreated": 18126.789331436157, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:12,230" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.2309804, - "msecs": 230.98039627075195, - "relativeCreated": 18127.222776412964, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,230" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.231573, - "msecs": 231.57310485839844, - "relativeCreated": 18127.81548500061, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:12,231" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.2321281, - "msecs": 232.12814331054688, - "relativeCreated": 18128.37052345276, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:12,232" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.2326293, - "msecs": 232.62929916381836, - "relativeCreated": 18128.87167930603, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,232" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.233239, - "msecs": 233.23893547058105, - "relativeCreated": 18129.481315612793, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,233" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.2340038, - "msecs": 234.00378227233887, - "relativeCreated": 18130.24616241455, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,234" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.234532, - "msecs": 234.53211784362793, - "relativeCreated": 18130.77449798584, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,234" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.2351103, - "msecs": 235.11028289794922, - "relativeCreated": 18131.35266304016, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,235" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.2354162, - "msecs": 235.41617393493652, - "relativeCreated": 18131.65855407715, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,235" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.273619, - "msecs": 273.6189365386963, - "relativeCreated": 18169.86131668091, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:12,273" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.2741091, - "msecs": 274.1091251373291, - "relativeCreated": 18170.35150527954, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:12,274" - } - ], - "time_consumption": 0.20923519134521484 - }, - { - "name": "__tLogger__", - "msg": "Changing master device color temperature to '%d'", - "args": [ - 2 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 81, - "funcName": "__test_color_temp_sync__", - "created": 1675954632.7850933, - "msecs": 785.0933074951172, - "relativeCreated": 18681.33568763733, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device color temperature to '2'", - "asctime": "2023-02-09 15:57:12,785", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.4839058, - "msecs": 483.9057922363281, - "relativeCreated": 18380.14817237854, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp and payload 2", - "asctime": "2023-02-09 15:57:12,483" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "b'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4850304, - "msecs": 485.0304126739502, - "relativeCreated": 18381.272792816162, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'2'", - "asctime": "2023-02-09 15:57:12,485" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.488735, - "msecs": 488.7349605560303, - "relativeCreated": 18384.977340698242, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"color_temp\": 291.0}'", - "asctime": "2023-02-09 15:57:12,488" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.489306, - "msecs": 489.3059730529785, - "relativeCreated": 18385.54835319519, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,489" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4898977, - "msecs": 489.8977279663086, - "relativeCreated": 18386.14010810852, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"color_temp\": 291.0}'", - "asctime": "2023-02-09 15:57:12,489" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.4903774, - "msecs": 490.37742614746094, - "relativeCreated": 18386.619806289673, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,490" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4910355, - "msecs": 491.03546142578125, - "relativeCreated": 18387.277841567993, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"color_temp\": 291.0}'", - "asctime": "2023-02-09 15:57:12,491" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.4915133, - "msecs": 491.5132522583008, - "relativeCreated": 18387.755632400513, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,491" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4920168, - "msecs": 492.0167922973633, - "relativeCreated": 18388.259172439575, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"color_temp\": 291.0}'", - "asctime": "2023-02-09 15:57:12,492" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.492494, - "msecs": 492.4941062927246, - "relativeCreated": 18388.736486434937, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,492" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4931695, - "msecs": 493.16954612731934, - "relativeCreated": 18389.41192626953, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"color_temp\": 291.0}'", - "asctime": "2023-02-09 15:57:12,493" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.4936047, - "msecs": 493.6046600341797, - "relativeCreated": 18389.84704017639, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,493" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.494047, - "msecs": 494.0469264984131, - "relativeCreated": 18390.289306640625, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"color_temp\": 291.0}'", - "asctime": "2023-02-09 15:57:12,494" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.4944544, - "msecs": 494.45438385009766, - "relativeCreated": 18390.69676399231, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,494" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4949808, - "msecs": 494.9808120727539, - "relativeCreated": 18391.223192214966, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,494" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4954655, - "msecs": 495.4655170440674, - "relativeCreated": 18391.70789718628, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,495" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4959316, - "msecs": 495.93162536621094, - "relativeCreated": 18392.174005508423, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,495" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.496393, - "msecs": 496.39296531677246, - "relativeCreated": 18392.635345458984, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,496" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4968615, - "msecs": 496.86145782470703, - "relativeCreated": 18393.10383796692, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,496" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.4973643, - "msecs": 497.3642826080322, - "relativeCreated": 18393.606662750244, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,497" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "b'2.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.537555, - "msecs": 537.5549793243408, - "relativeCreated": 18433.797359466553, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'2.0'", - "asctime": "2023-02-09 15:57:12,537" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.538253, - "msecs": 538.2530689239502, - "relativeCreated": 18434.495449066162, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:12,538" - } - ], - "time_consumption": 0.246840238571167 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954632.7857614, - "msecs": 785.7613563537598, - "relativeCreated": 18682.00373649597, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature is correct (Content 2 and Type is ).", - "asctime": "2023-02-09 15:57:12,785", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954632.7855208, - "msecs": 785.5207920074463, - "relativeCreated": 18681.76317214966, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature): 2 ()", - "asctime": "2023-02-09 15:57:12,785" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954632.7856553, - "msecs": 785.6552600860596, - "relativeCreated": 18681.89764022827, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature): result = 2 ()", - "asctime": "2023-02-09 15:57:12,785" - } - ], - "time_consumption": 0.00010609626770019531 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954632.7861187, - "msecs": 786.118745803833, - "relativeCreated": 18682.361125946045, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature is correct (Content 2 and Type is ).", - "asctime": "2023-02-09 15:57:12,786", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954632.7859335, - "msecs": 785.9334945678711, - "relativeCreated": 18682.175874710083, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature): 2 ()", - "asctime": "2023-02-09 15:57:12,785" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954632.78603, - "msecs": 786.0300540924072, - "relativeCreated": 18682.27243423462, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature): result = 2 ()", - "asctime": "2023-02-09 15:57:12,786" - } - ], - "time_consumption": 8.869171142578125e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954632.7864416, - "msecs": 786.4415645599365, - "relativeCreated": 18682.68394470215, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature is correct (Content 2 and Type is ).", - "asctime": "2023-02-09 15:57:12,786", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954632.786269, - "msecs": 786.268949508667, - "relativeCreated": 18682.51132965088, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature): 2 ()", - "asctime": "2023-02-09 15:57:12,786" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954632.7863586, - "msecs": 786.3585948944092, - "relativeCreated": 18682.60097503662, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature): result = 2 ()", - "asctime": "2023-02-09 15:57:12,786" - } - ], - "time_consumption": 8.296966552734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954632.7868, - "msecs": 786.7999076843262, - "relativeCreated": 18683.042287826538, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature is correct (Content 2 and Type is ).", - "asctime": "2023-02-09 15:57:12,786", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954632.7866137, - "msecs": 786.6137027740479, - "relativeCreated": 18682.85608291626, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature): 2 ()", - "asctime": "2023-02-09 15:57:12,786" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954632.7867064, - "msecs": 786.7064476013184, - "relativeCreated": 18682.94882774353, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature): result = 2 ()", - "asctime": "2023-02-09 15:57:12,786" - } - ], - "time_consumption": 9.34600830078125e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954632.7871115, - "msecs": 787.1115207672119, - "relativeCreated": 18683.353900909424, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature is correct (Content 2 and Type is ).", - "asctime": "2023-02-09 15:57:12,787", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954632.786942, - "msecs": 786.9420051574707, - "relativeCreated": 18683.184385299683, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature): 2 ()", - "asctime": "2023-02-09 15:57:12,786" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954632.78703, - "msecs": 787.0299816131592, - "relativeCreated": 18683.27236175537, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature): result = 2 ()", - "asctime": "2023-02-09 15:57:12,787" - } - ], - "time_consumption": 8.153915405273438e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954632.7874317, - "msecs": 787.4317169189453, - "relativeCreated": 18683.674097061157, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature is correct (Content 2 and Type is ).", - "asctime": "2023-02-09 15:57:12,787", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954632.7872515, - "msecs": 787.2514724731445, - "relativeCreated": 18683.493852615356, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature): 2 ()", - "asctime": "2023-02-09 15:57:12,787" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954632.787351, - "msecs": 787.3508930206299, - "relativeCreated": 18683.59327316284, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature): result = 2 ()", - "asctime": "2023-02-09 15:57:12,787" - } - ], - "time_consumption": 8.082389831542969e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing master device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 81, - "funcName": "__test_color_temp_sync__", - "created": 1675954633.0896525, - "msecs": 89.65253829956055, - "relativeCreated": 18985.894918441772, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device color temperature to '5'", - "asctime": "2023-02-09 15:57:13,089", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.7877223, - "msecs": 787.7223491668701, - "relativeCreated": 18683.964729309082, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/livingroom/floorlamp/color_temp and payload 5", - "asctime": "2023-02-09 15:57:12,787" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.7887938, - "msecs": 788.7938022613525, - "relativeCreated": 18685.036182403564, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:12,788" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.7925873, - "msecs": 792.5872802734375, - "relativeCreated": 18688.82966041565, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:12,792" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.7931588, - "msecs": 793.158769607544, - "relativeCreated": 18689.401149749756, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,793" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.7937412, - "msecs": 793.7412261962891, - "relativeCreated": 18689.9836063385, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:12,793" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.7942343, - "msecs": 794.2342758178711, - "relativeCreated": 18690.476655960083, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,794" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.7948775, - "msecs": 794.8775291442871, - "relativeCreated": 18691.1199092865, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:12,794" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.7953444, - "msecs": 795.344352722168, - "relativeCreated": 18691.58673286438, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,795" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.7957873, - "msecs": 795.7873344421387, - "relativeCreated": 18692.02971458435, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:12,795" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.7962058, - "msecs": 796.2057590484619, - "relativeCreated": 18692.448139190674, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,796" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.796748, - "msecs": 796.7479228973389, - "relativeCreated": 18692.99030303955, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:12,796" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.7971976, - "msecs": 797.1975803375244, - "relativeCreated": 18693.439960479736, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,797" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.7976375, - "msecs": 797.6374626159668, - "relativeCreated": 18693.87984275818, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:12,797" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954632.7980402, - "msecs": 798.0401515960693, - "relativeCreated": 18694.28253173828, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:12,798" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.7985704, - "msecs": 798.5703945159912, - "relativeCreated": 18694.812774658203, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,798" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.7990594, - "msecs": 799.0593910217285, - "relativeCreated": 18695.30177116394, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,799" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.799538, - "msecs": 799.5378971099854, - "relativeCreated": 18695.780277252197, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,799" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.8000205, - "msecs": 800.0204563140869, - "relativeCreated": 18696.2628364563, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,800" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.800486, - "msecs": 800.4860877990723, - "relativeCreated": 18696.728467941284, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,800" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.8009553, - "msecs": 800.9552955627441, - "relativeCreated": 18697.197675704956, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:12,800" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.841539, - "msecs": 841.5389060974121, - "relativeCreated": 18737.781286239624, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:12,841" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954632.8422322, - "msecs": 842.2322273254395, - "relativeCreated": 18738.47460746765, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:12,842" - } - ], - "time_consumption": 0.2474203109741211 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.0902483, - "msecs": 90.24834632873535, - "relativeCreated": 18986.490726470947, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:13,090", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.0900347, - "msecs": 90.03472328186035, - "relativeCreated": 18986.277103424072, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature): 5 ()", - "asctime": "2023-02-09 15:57:13,090" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.0901546, - "msecs": 90.15464782714844, - "relativeCreated": 18986.39702796936, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:13,090" - } - ], - "time_consumption": 9.369850158691406e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.090606, - "msecs": 90.6059741973877, - "relativeCreated": 18986.8483543396, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:13,090", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.090402, - "msecs": 90.40188789367676, - "relativeCreated": 18986.64426803589, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature): 5 ()", - "asctime": "2023-02-09 15:57:13,090" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.0905154, - "msecs": 90.5153751373291, - "relativeCreated": 18986.75775527954, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:13,090" - } - ], - "time_consumption": 9.059906005859375e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.0909097, - "msecs": 90.90971946716309, - "relativeCreated": 18987.152099609375, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:13,090", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.0907505, - "msecs": 90.75045585632324, - "relativeCreated": 18986.992835998535, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature): 5 ()", - "asctime": "2023-02-09 15:57:13,090" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.0908365, - "msecs": 90.8365249633789, - "relativeCreated": 18987.07890510559, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:13,090" - } - ], - "time_consumption": 7.319450378417969e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.091185, - "msecs": 91.18509292602539, - "relativeCreated": 18987.427473068237, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:13,091", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.0910356, - "msecs": 91.03560447692871, - "relativeCreated": 18987.27798461914, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature): 5 ()", - "asctime": "2023-02-09 15:57:13,091" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.0911136, - "msecs": 91.11356735229492, - "relativeCreated": 18987.355947494507, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:13,091" - } - ], - "time_consumption": 7.152557373046875e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.091453, - "msecs": 91.45307540893555, - "relativeCreated": 18987.695455551147, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:13,091", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.091307, - "msecs": 91.30692481994629, - "relativeCreated": 18987.54930496216, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature): 5 ()", - "asctime": "2023-02-09 15:57:13,091" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.0913827, - "msecs": 91.38274192810059, - "relativeCreated": 18987.625122070312, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:13,091" - } - ], - "time_consumption": 7.033348083496094e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.091728, - "msecs": 91.72797203063965, - "relativeCreated": 18987.97035217285, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:13,091", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.0915737, - "msecs": 91.57371520996094, - "relativeCreated": 18987.816095352173, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature): 5 ()", - "asctime": "2023-02-09 15:57:13,091" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.0916498, - "msecs": 91.64977073669434, - "relativeCreated": 18987.892150878906, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:13,091" - } - ], - "time_consumption": 7.82012939453125e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting preconditions for master device '%s' (Power off)", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 89, - "funcName": "__test_color_temp_sync__", - "created": 1675954633.3930805, - "msecs": 393.080472946167, - "relativeCreated": 19289.32285308838, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting preconditions for master device 'False' (Power off)", - "asctime": "2023-02-09 15:57:13,393", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.0919335, - "msecs": 91.9334888458252, - "relativeCreated": 18988.175868988037, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:13,091" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.0929372, - "msecs": 92.93723106384277, - "relativeCreated": 18989.179611206055, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:13,092" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.0973527, - "msecs": 97.35274314880371, - "relativeCreated": 18993.595123291016, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:13,097" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.0978508, - "msecs": 97.85079956054688, - "relativeCreated": 18994.09317970276, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,097" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.09835, - "msecs": 98.35004806518555, - "relativeCreated": 18994.592428207397, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:13,098" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.0987856, - "msecs": 98.7856388092041, - "relativeCreated": 18995.028018951416, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,098" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.0993514, - "msecs": 99.35140609741211, - "relativeCreated": 18995.593786239624, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:13,099" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.09977, - "msecs": 99.77006912231445, - "relativeCreated": 18996.012449264526, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,099" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1002138, - "msecs": 100.21376609802246, - "relativeCreated": 18996.456146240234, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:13,100" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.1006384, - "msecs": 100.63838958740234, - "relativeCreated": 18996.880769729614, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,100" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.101225, - "msecs": 101.22489929199219, - "relativeCreated": 18997.467279434204, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:13,101" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.1016533, - "msecs": 101.6533374786377, - "relativeCreated": 18997.89571762085, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,101" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1020947, - "msecs": 102.09465026855469, - "relativeCreated": 18998.337030410767, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:13,102" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.1025178, - "msecs": 102.51784324645996, - "relativeCreated": 18998.760223388672, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,102" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1030562, - "msecs": 103.05619239807129, - "relativeCreated": 18999.298572540283, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:13,103" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1035886, - "msecs": 103.58858108520508, - "relativeCreated": 18999.830961227417, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:13,103" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1040747, - "msecs": 104.07471656799316, - "relativeCreated": 19000.317096710205, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,104" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1045384, - "msecs": 104.5384407043457, - "relativeCreated": 19000.780820846558, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,104" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1050155, - "msecs": 105.01551628112793, - "relativeCreated": 19001.25789642334, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,105" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1059117, - "msecs": 105.9117317199707, - "relativeCreated": 19002.154111862183, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,105" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1063864, - "msecs": 106.38642311096191, - "relativeCreated": 19002.628803253174, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,106" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1068442, - "msecs": 106.84418678283691, - "relativeCreated": 19003.08656692505, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,106" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1479964, - "msecs": 147.9964256286621, - "relativeCreated": 19044.238805770874, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:13,147" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.1486826, - "msecs": 148.6825942993164, - "relativeCreated": 19044.92497444153, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:13,148" - } - ], - "time_consumption": 0.24439787864685059 - } - ], - "time_consumption": 1.211500883102417, - "time_start": "2023-02-09 15:57:12,181", - "time_finished": "2023-02-09 15:57:13,393" - }, - "Power On/ Off synchronisation test: shellies/ffe/livingroom/main_light": { - "name": "__tLogger__", - "msg": "Power On/ Off synchronisation test: shellies/ffe/livingroom/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 24, - "funcName": "test_power_on_off_sync", - "created": 1675954633.3937616, - "msecs": 393.76163482666016, - "relativeCreated": 19290.004014968872, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off synchronisation test: shellies/ffe/livingroom/main_light", - "asctime": "2023-02-09 15:57:13,393", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions for master device '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 30, - "funcName": "__test_power_on_off_sync__", - "created": 1675954633.6955843, - "msecs": 695.5842971801758, - "relativeCreated": 19591.826677322388, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions for master device 'False'", - "asctime": "2023-02-09 15:57:13,695", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Changing master device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off_sync__", - "created": 1675954633.9973948, - "msecs": 997.3948001861572, - "relativeCreated": 19893.63718032837, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device state to 'True'", - "asctime": "2023-02-09 15:57:13,997", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.6960466, - "msecs": 696.0465908050537, - "relativeCreated": 19592.288970947266, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:13,696" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.6966763, - "msecs": 696.6762542724609, - "relativeCreated": 19592.918634414673, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,696" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.6976814, - "msecs": 697.6814270019531, - "relativeCreated": 19593.923807144165, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:13,697" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.698353, - "msecs": 698.3530521392822, - "relativeCreated": 19594.595432281494, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,698" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7420547, - "msecs": 742.0547008514404, - "relativeCreated": 19638.297080993652, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:13,742" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.7427266, - "msecs": 742.7265644073486, - "relativeCreated": 19638.96894454956, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,742" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7433398, - "msecs": 743.3397769927979, - "relativeCreated": 19639.58215713501, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:13,743" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.7438188, - "msecs": 743.8187599182129, - "relativeCreated": 19640.061140060425, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,743" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7444875, - "msecs": 744.4875240325928, - "relativeCreated": 19640.729904174805, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:13,744" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.7449667, - "msecs": 744.9667453765869, - "relativeCreated": 19641.2091255188, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,744" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7455122, - "msecs": 745.5122470855713, - "relativeCreated": 19641.754627227783, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:13,745" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.7459774, - "msecs": 745.9774017333984, - "relativeCreated": 19642.21978187561, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,745" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7465932, - "msecs": 746.5932369232178, - "relativeCreated": 19642.83561706543, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:13,746" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.7470634, - "msecs": 747.063398361206, - "relativeCreated": 19643.305778503418, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,747" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"on\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7475598, - "msecs": 747.5597858428955, - "relativeCreated": 19643.802165985107, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"on\"}'", - "asctime": "2023-02-09 15:57:13,747" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.748024, - "msecs": 748.0239868164062, - "relativeCreated": 19644.266366958618, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:13,748" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.748627, - "msecs": 748.6269474029541, - "relativeCreated": 19644.869327545166, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:13,748" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7492642, - "msecs": 749.2642402648926, - "relativeCreated": 19645.506620407104, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:13,749" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7498178, - "msecs": 749.8178482055664, - "relativeCreated": 19646.06022834778, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,749" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7503467, - "msecs": 750.3466606140137, - "relativeCreated": 19646.589040756226, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,750" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7508829, - "msecs": 750.8828639984131, - "relativeCreated": 19647.125244140625, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,750" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.751412, - "msecs": 751.4119148254395, - "relativeCreated": 19647.65429496765, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,751" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7519171, - "msecs": 751.9171237945557, - "relativeCreated": 19648.159503936768, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,751" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7524192, - "msecs": 752.4192333221436, - "relativeCreated": 19648.661613464355, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:13,752" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7898943, - "msecs": 789.8943424224854, - "relativeCreated": 19686.136722564697, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true'", - "asctime": "2023-02-09 15:57:13,789" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954633.7907257, - "msecs": 790.7257080078125, - "relativeCreated": 19686.968088150024, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:13,790" - } - ], - "time_consumption": 0.20666909217834473 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.9980638, - "msecs": 998.0638027191162, - "relativeCreated": 19894.306182861328, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:13,998", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.99782, - "msecs": 997.8199005126953, - "relativeCreated": 19894.062280654907, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) state): True ()", - "asctime": "2023-02-09 15:57:13,997" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.9979577, - "msecs": 997.957706451416, - "relativeCreated": 19894.200086593628, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) state): result = True ()", - "asctime": "2023-02-09 15:57:13,997" - } - ], - "time_consumption": 0.00010609626770019531 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.9984696, - "msecs": 998.4695911407471, - "relativeCreated": 19894.71197128296, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:13,998", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.9982367, - "msecs": 998.2366561889648, - "relativeCreated": 19894.479036331177, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) state): True ()", - "asctime": "2023-02-09 15:57:13,998" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.9983668, - "msecs": 998.3668327331543, - "relativeCreated": 19894.609212875366, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) state): result = True ()", - "asctime": "2023-02-09 15:57:13,998" + "asctime": "2023-02-15 07:14:29,453" } ], "time_consumption": 0.00010275840759277344 }, { "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) state is correct (Content %s and Type is %s).", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.9988055, - "msecs": 998.8055229187012, - "relativeCreated": 19895.047903060913, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:13,998", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.998628, - "msecs": 998.6279010772705, - "relativeCreated": 19894.870281219482, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) state): True ()", - "asctime": "2023-02-09 15:57:13,998" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.99872, - "msecs": 998.7199306488037, - "relativeCreated": 19894.962310791016, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) state): result = True ()", - "asctime": "2023-02-09 15:57:13,998" - } - ], - "time_consumption": 8.559226989746094e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.9991405, - "msecs": 999.1405010223389, - "relativeCreated": 19895.38288116455, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:13,999", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.9989634, - "msecs": 998.9633560180664, - "relativeCreated": 19895.20573616028, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) state): True ()", - "asctime": "2023-02-09 15:57:13,998" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.9990573, - "msecs": 999.0572929382324, - "relativeCreated": 19895.299673080444, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) state): result = True ()", - "asctime": "2023-02-09 15:57:13,999" - } - ], - "time_consumption": 8.320808410644531e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.9994526, - "msecs": 999.4525909423828, - "relativeCreated": 19895.694971084595, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:13,999", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.9992828, - "msecs": 999.2828369140625, - "relativeCreated": 19895.525217056274, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) state): True ()", - "asctime": "2023-02-09 15:57:13,999" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.9993715, - "msecs": 999.3715286254883, - "relativeCreated": 19895.6139087677, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) state): result = True ()", - "asctime": "2023-02-09 15:57:13,999" - } - ], - "time_consumption": 8.106231689453125e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954633.9997706, - "msecs": 999.7706413269043, - "relativeCreated": 19896.013021469116, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:13,999", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954633.9995918, - "msecs": 999.5918273925781, - "relativeCreated": 19895.83420753479, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) state): True ()", - "asctime": "2023-02-09 15:57:13,999" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954633.9996793, - "msecs": 999.6793270111084, - "relativeCreated": 19895.92170715332, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) state): result = True ()", - "asctime": "2023-02-09 15:57:13,999" - } - ], - "time_consumption": 9.131431579589844e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing master device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off_sync__", - "created": 1675954634.3010235, - "msecs": 301.0234832763672, - "relativeCreated": 20197.26586341858, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device state to 'False'", - "asctime": "2023-02-09 15:57:14,301", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954633.9999945, - "msecs": 999.9945163726807, - "relativeCreated": 19896.236896514893, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:13,999" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/livingroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.00117, - "msecs": 1.1699199676513672, - "relativeCreated": 19897.412300109863, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:14,001" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0058656, - "msecs": 5.865573883056641, - "relativeCreated": 19902.10795402527, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:14,005" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954634.0063431, - "msecs": 6.34312629699707, - "relativeCreated": 19902.58550643921, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:14,006" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0068576, - "msecs": 6.857633590698242, - "relativeCreated": 19903.10001373291, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:14,006" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954634.0073347, - "msecs": 7.334709167480469, - "relativeCreated": 19903.577089309692, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:14,007" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0079188, - "msecs": 7.918834686279297, - "relativeCreated": 19904.16121482849, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:14,007" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954634.0083418, - "msecs": 8.341789245605469, - "relativeCreated": 19904.584169387817, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:14,008" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0087934, - "msecs": 8.793354034423828, - "relativeCreated": 19905.035734176636, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:14,008" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954634.0092459, - "msecs": 9.245872497558594, - "relativeCreated": 19905.48825263977, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:14,009" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0098007, - "msecs": 9.80067253112793, - "relativeCreated": 19906.04305267334, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:14,009" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954634.0102293, - "msecs": 10.229349136352539, - "relativeCreated": 19906.471729278564, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:14,010" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.010667, - "msecs": 10.667085647583008, - "relativeCreated": 19906.909465789795, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:14,010" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954634.011071, - "msecs": 11.070966720581055, - "relativeCreated": 19907.313346862793, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:14,011" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0116036, - "msecs": 11.603593826293945, - "relativeCreated": 19907.845973968506, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:14,011" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0121288, - "msecs": 12.128829956054688, - "relativeCreated": 19908.371210098267, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:14,012" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_1", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0126083, - "msecs": 12.60828971862793, - "relativeCreated": 19908.85066986084, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:14,012" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_2", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0130959, - "msecs": 13.095855712890625, - "relativeCreated": 19909.338235855103, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:14,013" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_3", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0135567, - "msecs": 13.556718826293945, - "relativeCreated": 19909.799098968506, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:14,013" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_4", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0140195, - "msecs": 14.019489288330078, - "relativeCreated": 19910.261869430542, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:14,014" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_5", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_5", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0144694, - "msecs": 14.469385147094727, - "relativeCreated": 19910.711765289307, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:14,014" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.livingroom.floorlamp_6", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/livingroom/floorlamp_6", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.014913, - "msecs": 14.913082122802734, - "relativeCreated": 19911.155462265015, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:14,014" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.056172, - "msecs": 56.17189407348633, - "relativeCreated": 19952.4142742157, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false'", - "asctime": "2023-02-09 15:57:14,056" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.floorlamp.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/floorlamp/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.0568771, - "msecs": 56.87713623046875, - "relativeCreated": 19953.11951637268, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:14,056" - } - ], - "time_consumption": 0.24414634704589844 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_1) state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954634.3016438, - "msecs": 301.64384841918945, - "relativeCreated": 20197.8862285614, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_1) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:14,301", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954634.3014293, - "msecs": 301.42927169799805, - "relativeCreated": 20197.67165184021, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_1) state): False ()", - "asctime": "2023-02-09 15:57:14,301" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_1) state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954634.3015482, - "msecs": 301.5482425689697, - "relativeCreated": 20197.79062271118, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_1) state): result = False ()", - "asctime": "2023-02-09 15:57:14,301" - } - ], - "time_consumption": 9.560585021972656e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_2) state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954634.301951, - "msecs": 301.95093154907227, - "relativeCreated": 20198.193311691284, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_2) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:14,301", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954634.3017905, - "msecs": 301.7904758453369, - "relativeCreated": 20198.03285598755, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_2) state): False ()", - "asctime": "2023-02-09 15:57:14,301" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_2) state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954634.301875, - "msecs": 301.87511444091797, - "relativeCreated": 20198.11749458313, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_2) state): result = False ()", - "asctime": "2023-02-09 15:57:14,301" - } - ], - "time_consumption": 7.581710815429688e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_3) state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954634.3022785, - "msecs": 302.2785186767578, - "relativeCreated": 20198.52089881897, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_3) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:14,302", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954634.3021128, - "msecs": 302.1128177642822, - "relativeCreated": 20198.355197906494, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_3) state): False ()", - "asctime": "2023-02-09 15:57:14,302" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_3) state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954634.302193, - "msecs": 302.19292640686035, - "relativeCreated": 20198.435306549072, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_3) state): result = False ()", - "asctime": "2023-02-09 15:57:14,302" - } - ], - "time_consumption": 8.559226989746094e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_4) state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954634.3025706, - "msecs": 302.5705814361572, - "relativeCreated": 20198.81296157837, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_4) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:14,302", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954634.3024125, - "msecs": 302.4125099182129, - "relativeCreated": 20198.654890060425, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_4) state): False ()", - "asctime": "2023-02-09 15:57:14,302" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_4) state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954634.3024976, - "msecs": 302.49762535095215, - "relativeCreated": 20198.740005493164, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_4) state): result = False ()", - "asctime": "2023-02-09 15:57:14,302" - } - ], - "time_consumption": 7.295608520507812e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_5) state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954634.3028402, - "msecs": 302.8402328491211, - "relativeCreated": 20199.082612991333, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_5) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:14,302", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954634.3026924, - "msecs": 302.6924133300781, - "relativeCreated": 20198.93479347229, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_5) state): False ()", - "asctime": "2023-02-09 15:57:14,302" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_5) state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954634.3027687, - "msecs": 302.7687072753906, - "relativeCreated": 20199.011087417603, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_5) state): result = False ()", - "asctime": "2023-02-09 15:57:14,302" - } - ], - "time_consumption": 7.152557373046875e-05 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/ffe/livingroom/floorlamp_6) state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954634.3031054, - "msecs": 303.10535430908203, - "relativeCreated": 20199.347734451294, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/ffe/livingroom/floorlamp_6) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:14,303", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954634.3029604, - "msecs": 302.9603958129883, - "relativeCreated": 20199.2027759552, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/ffe/livingroom/floorlamp_6) state): False ()", - "asctime": "2023-02-09 15:57:14,302" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/ffe/livingroom/floorlamp_6) state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954634.303035, - "msecs": 303.03502082824707, - "relativeCreated": 20199.27740097046, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/ffe/livingroom/floorlamp_6) state): result = False ()", - "asctime": "2023-02-09 15:57:14,303" - } - ], - "time_consumption": 7.033348083496094e-05 - } - ], - "time_consumption": 0.9093437194824219, - "time_start": "2023-02-09 15:57:13,393", - "time_finished": "2023-02-09 15:57:14,303" - }, - "Brightness test for device and virtual device: zigbee/ffe/sleep/bed_light_di": { - "name": "__tLogger__", - "msg": "Brightness test for device and virtual device: zigbee/ffe/sleep/bed_light_di", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_brightness", - "created": 1675954634.3035438, - "msecs": 303.5438060760498, - "relativeCreated": 20199.78618621826, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness test for device and virtual device: zigbee/ffe/sleep/bed_light_di", - "asctime": "2023-02-09 15:57:14,303", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 57, - "funcName": "__test_brightness__", - "created": 1675954634.604622, - "msecs": 604.6218872070312, - "relativeCreated": 20500.864267349243, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:14,604", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954634.3039355, - "msecs": 303.9355278015137, - "relativeCreated": 20200.177907943726, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:14,303" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.3048785, - "msecs": 304.87847328186035, - "relativeCreated": 20201.120853424072, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:14,304" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.3090632, - "msecs": 309.063196182251, - "relativeCreated": 20205.305576324463, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", - "asctime": "2023-02-09 15:57:14,309" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.309694, - "msecs": 309.6940517425537, - "relativeCreated": 20205.936431884766, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:14,309" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.3102233, - "msecs": 310.2233409881592, - "relativeCreated": 20206.46572113037, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:14,310" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.3107622, - "msecs": 310.7621669769287, - "relativeCreated": 20207.00454711914, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:14,310" - } - ], - "time_consumption": 0.29385972023010254 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", + "5", "" ], "levelname": "INFO", @@ -34828,22 +76619,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954634.6052938, - "msecs": 605.2937507629395, - "relativeCreated": 20501.53613090515, - "thread": 139894075555840, + "created": 1676441669.4536014, + "msecs": 453.6013603210449, + "relativeCreated": 66457.11660385132, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:14,605", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:29,453", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Virtual device brightness", - "50", + "Virtual device color temperature", + "5", "" ], "levelname": "DEBUG", @@ -34856,23 +76647,23 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954634.6050196, - "msecs": 605.0195693969727, - "relativeCreated": 20501.261949539185, - "thread": 139894075555840, + "created": 1676441669.4533908, + "msecs": 453.39083671569824, + "relativeCreated": 66456.90608024597, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:14,605" + "process": 509276, + "message": "Result (Virtual device color temperature): 5 ()", + "asctime": "2023-02-15 07:14:29,453" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Virtual device brightness", + "Virtual device color temperature", "=", - "50", + "5", "" ], "levelname": "DEBUG", @@ -34885,24 +76676,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954634.6051872, - "msecs": 605.187177658081, - "relativeCreated": 20501.429557800293, - "thread": 139894075555840, + "created": 1676441669.4535124, + "msecs": 453.51243019104004, + "relativeCreated": 66457.02767372131, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:14,605" + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:29,453" } ], - "time_consumption": 0.00010657310485839844 + "time_consumption": 8.893013000488281e-05 }, { "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", + "msg": "Changing light device color temperature to '%d'", "args": [ - 65 + 5 ], "levelname": "DEBUG", "levelno": 10, @@ -34912,24 +76703,24 @@ "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954634.9075553, - "msecs": 907.555341720581, - "relativeCreated": 20803.797721862793, - "thread": 139894075555840, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441669.7550132, + "msecs": 755.0132274627686, + "relativeCreated": 66758.52847099304, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:14,907", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:14:29,755", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 165.0, \"__type__\": \"tradfri_light\"}" + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -34941,22 +76732,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954634.6056497, - "msecs": 605.6497097015381, - "relativeCreated": 20501.89208984375, - "thread": 139894075555840, + "created": 1676441669.45393, + "msecs": 453.9299011230469, + "relativeCreated": 66457.44514465332, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 165.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:14,605" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:29,453" }, { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"__type__\": \"tradfri_light\"}'" + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -34968,22 +76759,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954634.6067483, - "msecs": 606.7483425140381, - "relativeCreated": 20502.99072265625, - "thread": 139894051313216, + "created": 1676441669.4550438, + "msecs": 455.0437927246094, + "relativeCreated": 66458.55903625488, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:14,606" + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:29,455" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_di/brightness", - "b'65.0'" + "videv/gfw/dirk/main_light/color_temp", + "b'8'" ], "levelname": "DEBUG", "levelno": 10, @@ -34995,51 +76786,24 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954634.6091738, - "msecs": 609.1737747192383, - "relativeCreated": 20505.41615486145, - "thread": 139894051313216, + "created": 1676441669.457141, + "msecs": 457.1409225463867, + "relativeCreated": 66460.65616607666, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:14,609" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.6098537, - "msecs": 609.8537445068359, - "relativeCreated": 20506.096124649048, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:14,609" + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:29,457" } ], - "time_consumption": 0.2977015972137451 + "time_consumption": 0.29787230491638184 }, { "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", "args": [ - "65", + "8", "" ], "levelname": "INFO", @@ -35052,22 +76816,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954634.908273, - "msecs": 908.2729816436768, - "relativeCreated": 20804.51536178589, - "thread": 139894075555840, + "created": 1676441669.755738, + "msecs": 755.7380199432373, + "relativeCreated": 66759.25326347351, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:14,908", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:29,755", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Virtual device brightness", - "65", + "Virtual device color temperature", + "8", "" ], "levelname": "DEBUG", @@ -35080,23 +76844,23 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954634.9079776, - "msecs": 907.9775810241699, - "relativeCreated": 20804.219961166382, - "thread": 139894075555840, + "created": 1676441669.7554672, + "msecs": 755.4671764373779, + "relativeCreated": 66758.98241996765, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:14,907" + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:14:29,755" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Virtual device brightness", + "Virtual device color temperature", "=", - "65", + "8", "" ], "levelname": "DEBUG", @@ -35109,24 +76873,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954634.9081635, - "msecs": 908.1635475158691, - "relativeCreated": 20804.40592765808, - "thread": 139894075555840, + "created": 1676441669.755619, + "msecs": 755.6190490722656, + "relativeCreated": 66759.13429260254, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:14,908" + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:14:29,755" } ], - "time_consumption": 0.00010943412780761719 + "time_consumption": 0.00011897087097167969 }, { "name": "__tLogger__", "msg": "Light device brightness is correct (Content %s and Type is %s).", "args": [ - "65", + "8", "" ], "levelname": "INFO", @@ -35139,22 +76903,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954634.9086342, - "msecs": 908.6341857910156, - "relativeCreated": 20804.876565933228, - "thread": 139894075555840, + "created": 1676441669.756139, + "msecs": 756.1390399932861, + "relativeCreated": 66759.65428352356, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:14,908", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:29,756", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Light device brightness", - "65", + "8", "" ], "levelname": "DEBUG", @@ -35167,15 +76931,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954634.9084506, - "msecs": 908.4506034851074, - "relativeCreated": 20804.69298362732, - "thread": 139894075555840, + "created": 1676441669.75593, + "msecs": 755.9299468994141, + "relativeCreated": 66759.44519042969, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:14,908" + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:14:29,755" }, { "name": "__unittest__", @@ -35183,7 +76947,7 @@ "args": [ "Light device brightness", "=", - "65", + "8", "" ], "levelname": "DEBUG", @@ -35196,24 +76960,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954634.9085476, - "msecs": 908.5476398468018, - "relativeCreated": 20804.790019989014, - "thread": 139894075555840, + "created": 1676441669.7560394, + "msecs": 756.0393810272217, + "relativeCreated": 66759.5546245575, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:14,908" + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:14:29,756" } ], - "time_consumption": 8.654594421386719e-05 + "time_consumption": 9.965896606445312e-05 }, { "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", + "msg": "Changing virtual device color temperature to '%d'", "args": [ - 50 + 5 ], "levelname": "DEBUG", "levelno": 10, @@ -35223,24 +76987,24 @@ "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954635.2108605, - "msecs": 210.8604907989502, - "relativeCreated": 21107.102870941162, - "thread": 139894075555840, + "lineno": 100, + "funcName": "__test_color_temp__", + "created": 1676441670.057558, + "msecs": 57.55805969238281, + "relativeCreated": 67061.07330322266, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:15,210", + "process": 509276, + "message": "Changing virtual device color temperature to '5'", + "asctime": "2023-02-15 07:14:30,057", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_di/brightness", - "50" + "videv/gfw/dirk/main_light/color_temp/set", + "5" ], "levelname": "DEBUG", "levelno": 10, @@ -35252,22 +77016,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954634.908919, - "msecs": 908.919095993042, - "relativeCreated": 20805.161476135254, - "thread": 139894075555840, + "created": 1676441669.7564166, + "msecs": 756.4165592193604, + "relativeCreated": 66759.93180274963, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness and payload 50", - "asctime": "2023-02-09 15:57:14,908" + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:29,756" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_di/brightness", - "b'50'" + "zigbee/gfw/dirk/main_light/set", + "b'{\"color_temp\": 352}'" ], "levelname": "DEBUG", "levelno": 10, @@ -35279,49 +77043,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954634.9100387, - "msecs": 910.0387096405029, - "relativeCreated": 20806.281089782715, - "thread": 139894051313216, + "created": 1676441669.759773, + "msecs": 759.7730159759521, + "relativeCreated": 66763.28825950623, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:14,910" + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:29,759" }, { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.9118552, - "msecs": 911.8552207946777, - "relativeCreated": 20808.09760093689, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:14,911" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}" + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -35333,22 +77070,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954634.9123769, - "msecs": 912.376880645752, - "relativeCreated": 20808.619260787964, - "thread": 139894051313216, + "created": 1676441669.7603064, + "msecs": 760.3063583374023, + "relativeCreated": 66763.82160186768, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:14,912" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:29,760" }, { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'" + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -35360,22 +77097,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954634.9133303, - "msecs": 913.3303165435791, - "relativeCreated": 20809.57269668579, - "thread": 139894051313216, + "created": 1676441669.761573, + "msecs": 761.573076248169, + "relativeCreated": 66765.08831977844, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:14,913" + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:29,761" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_di/brightness", - "b'50.0'" + "videv/gfw/dirk/main_light/color_temp", + "b'5'" ], "levelname": "DEBUG", "levelno": 10, @@ -35387,51 +77124,24 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954634.9573495, - "msecs": 957.3495388031006, - "relativeCreated": 20853.591918945312, - "thread": 139894051313216, + "created": 1676441669.8040032, + "msecs": 804.0032386779785, + "relativeCreated": 66807.51848220825, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:14,957" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954634.9580724, - "msecs": 958.0724239349365, - "relativeCreated": 20854.31480407715, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:14,958" + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:29,804" } ], - "time_consumption": 0.25278806686401367 + "time_consumption": 0.2535548210144043 }, { "name": "__tLogger__", "msg": "Light device brightness is correct (Content %s and Type is %s).", "args": [ - "50", + "5", "" ], "levelname": "INFO", @@ -35444,22 +77154,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954635.211512, - "msecs": 211.51208877563477, - "relativeCreated": 21107.754468917847, - "thread": 139894075555840, + "created": 1676441670.0582893, + "msecs": 58.289289474487305, + "relativeCreated": 67061.80453300476, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:15,211", + "process": 509276, + "message": "Light device brightness is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:30,058", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Light device brightness", - "50", + "5", "" ], "levelname": "DEBUG", @@ -35472,15 +77182,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954635.2112696, - "msecs": 211.26961708068848, - "relativeCreated": 21107.5119972229, - "thread": 139894075555840, + "created": 1676441670.0580127, + "msecs": 58.01272392272949, + "relativeCreated": 67061.527967453, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:15,211" + "process": 509276, + "message": "Result (Light device brightness): 5 ()", + "asctime": "2023-02-15 07:14:30,058" }, { "name": "__unittest__", @@ -35488,7 +77198,7 @@ "args": [ "Light device brightness", "=", - "50", + "5", "" ], "levelname": "DEBUG", @@ -35501,721 +77211,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954635.2114062, - "msecs": 211.40623092651367, - "relativeCreated": 21107.648611068726, - "thread": 139894075555840, + "created": 1676441670.0581653, + "msecs": 58.16531181335449, + "relativeCreated": 67061.68055534363, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:15,211" + "process": 509276, + "message": "Expectation (Light device brightness): result = 5 ()", + "asctime": "2023-02-15 07:14:30,058" } ], - "time_consumption": 0.00010585784912109375 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954635.2118604, - "msecs": 211.86041831970215, - "relativeCreated": 21108.102798461914, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:15,211", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954635.2116792, - "msecs": 211.67922019958496, - "relativeCreated": 21107.921600341797, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:15,211" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954635.2117758, - "msecs": 211.7757797241211, - "relativeCreated": 21108.018159866333, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:15,211" - } - ], - "time_consumption": 8.463859558105469e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954635.5141387, - "msecs": 514.1386985778809, - "relativeCreated": 21410.381078720093, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:15,514", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 165.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954635.2122238, - "msecs": 212.22376823425293, - "relativeCreated": 21108.466148376465, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 165.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:15,212" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.2133527, - "msecs": 213.35268020629883, - "relativeCreated": 21109.59506034851, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:15,213" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.215724, - "msecs": 215.72399139404297, - "relativeCreated": 21111.966371536255, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:15,215" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.2164147, - "msecs": 216.4146900177002, - "relativeCreated": 21112.657070159912, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:15,216" - } - ], - "time_consumption": 0.29772400856018066 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954635.5147433, - "msecs": 514.7433280944824, - "relativeCreated": 21410.985708236694, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:15,514", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954635.5145316, - "msecs": 514.5316123962402, - "relativeCreated": 21410.773992538452, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:15,514" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954635.5146513, - "msecs": 514.6512985229492, - "relativeCreated": 21410.89367866516, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:15,514" - } - ], - "time_consumption": 9.202957153320312e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954635.5150666, - "msecs": 515.0666236877441, - "relativeCreated": 21411.309003829956, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:15,515", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954635.5148923, - "msecs": 514.8923397064209, - "relativeCreated": 21411.134719848633, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:15,514" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954635.51499, - "msecs": 514.9900913238525, - "relativeCreated": 21411.232471466064, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:15,514" - } - ], - "time_consumption": 7.653236389160156e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954635.81707, - "msecs": 817.0700073242188, - "relativeCreated": 21713.31238746643, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:15,817", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954635.515316, - "msecs": 515.3160095214844, - "relativeCreated": 21411.558389663696, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/brightness and payload 50", - "asctime": "2023-02-09 15:57:15,515" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.5162816, - "msecs": 516.2816047668457, - "relativeCreated": 21412.523984909058, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:15,516" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.5177934, - "msecs": 517.7934169769287, - "relativeCreated": 21414.03579711914, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:15,517" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954635.518232, - "msecs": 518.2321071624756, - "relativeCreated": 21414.474487304688, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:15,518" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.5190752, - "msecs": 519.0751552581787, - "relativeCreated": 21415.31753540039, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:15,519" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.5650175, - "msecs": 565.0174617767334, - "relativeCreated": 21461.259841918945, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:15,565" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.5657089, - "msecs": 565.7088756561279, - "relativeCreated": 21461.95125579834, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:15,565" - } - ], - "time_consumption": 0.2513611316680908 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954635.8176432, - "msecs": 817.6431655883789, - "relativeCreated": 21713.88554573059, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:15,817", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954635.8174336, - "msecs": 817.4335956573486, - "relativeCreated": 21713.67597579956, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:15,817" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954635.8175507, - "msecs": 817.5506591796875, - "relativeCreated": 21713.7930393219, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:15,817" - } - ], - "time_consumption": 9.250640869140625e-05 + "time_consumption": 0.0001239776611328125 }, { "name": "__tLogger__", @@ -36229,2105 +77236,23 @@ "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 74, - "funcName": "__test_brightness__", - "created": 1675954636.1198337, - "msecs": 119.83370780944824, - "relativeCreated": 22016.07608795166, - "thread": 139894075555840, + "lineno": 105, + "funcName": "__test_color_temp__", + "created": 1676441670.3598008, + "msecs": 359.8008155822754, + "relativeCreated": 67363.31605911255, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:16,119", + "asctime": "2023-02-15 07:14:30,359", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954635.8179562, - "msecs": 817.9562091827393, - "relativeCreated": 21714.19858932495, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:15,817" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.8189268, - "msecs": 818.9268112182617, - "relativeCreated": 21715.169191360474, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:15,818" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.8224404, - "msecs": 822.4403858184814, - "relativeCreated": 21718.682765960693, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", - "asctime": "2023-02-09 15:57:15,822" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954635.823032, - "msecs": 823.0319023132324, - "relativeCreated": 21719.274282455444, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:15,823" - } - ], - "time_consumption": 0.2968018054962158 - } - ], - "time_consumption": 1.8162899017333984, - "time_start": "2023-02-09 15:57:14,303", - "time_finished": "2023-02-09 15:57:16,119" - }, - "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_di": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_di", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954636.120506, - "msecs": 120.50604820251465, - "relativeCreated": 22016.748428344727, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_di", - "asctime": "2023-02-09 15:57:16,120", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954636.1209712, - "msecs": 120.9712028503418, - "relativeCreated": 22017.213582992554, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:16,120", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954636.1207626, - "msecs": 120.76258659362793, - "relativeCreated": 22017.00496673584, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:16,120" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954636.1208777, - "msecs": 120.87774276733398, - "relativeCreated": 22017.120122909546, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:16,120" - } - ], - "time_consumption": 9.34600830078125e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954636.4231567, - "msecs": 423.15673828125, - "relativeCreated": 22319.399118423462, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:16,423", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954636.121308, - "msecs": 121.3080883026123, - "relativeCreated": 22017.550468444824, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:16,121" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.1222978, - "msecs": 122.29776382446289, - "relativeCreated": 22018.540143966675, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:16,122" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.169887, - "msecs": 169.88706588745117, - "relativeCreated": 22066.129446029663, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", - "asctime": "2023-02-09 15:57:16,169" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.1705685, - "msecs": 170.56846618652344, - "relativeCreated": 22066.810846328735, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:16,170" - } - ], - "time_consumption": 0.25258827209472656 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954636.4237263, - "msecs": 423.72632026672363, - "relativeCreated": 22319.968700408936, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:16,423", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954636.4235194, - "msecs": 423.5193729400635, - "relativeCreated": 22319.761753082275, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:16,423" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954636.423635, - "msecs": 423.63500595092773, - "relativeCreated": 22319.87738609314, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:16,423" - } - ], - "time_consumption": 9.131431579589844e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954636.4240663, - "msecs": 424.06630516052246, - "relativeCreated": 22320.308685302734, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:16,424", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954636.4238741, - "msecs": 423.8741397857666, - "relativeCreated": 22320.11651992798, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:16,423" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954636.423961, - "msecs": 423.96092414855957, - "relativeCreated": 22320.20330429077, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:16,423" - } - ], - "time_consumption": 0.00010538101196289062 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954636.7253714, - "msecs": 725.3713607788086, - "relativeCreated": 22621.61374092102, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:16,725", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954636.424316, - "msecs": 424.3159294128418, - "relativeCreated": 22320.558309555054, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state and payload false", - "asctime": "2023-02-09 15:57:16,424" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.425311, - "msecs": 425.3110885620117, - "relativeCreated": 22321.553468704224, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", - "asctime": "2023-02-09 15:57:16,425" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.4267752, - "msecs": 426.7752170562744, - "relativeCreated": 22323.017597198486, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:16,426" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954636.4276805, - "msecs": 427.68049240112305, - "relativeCreated": 22323.922872543335, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:16,427" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.428526, - "msecs": 428.5259246826172, - "relativeCreated": 22324.76830482483, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:16,428" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.5140038, - "msecs": 514.0037536621094, - "relativeCreated": 22410.24613380432, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", - "asctime": "2023-02-09 15:57:16,514" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.5147252, - "msecs": 514.7252082824707, - "relativeCreated": 22410.967588424683, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:16,514" - } - ], - "time_consumption": 0.2106461524963379 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954636.7260215, - "msecs": 726.0215282440186, - "relativeCreated": 22622.26390838623, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:16,726", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954636.7257829, - "msecs": 725.7828712463379, - "relativeCreated": 22622.02525138855, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:16,725" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954636.7259161, - "msecs": 725.9161472320557, - "relativeCreated": 22622.158527374268, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:16,725" - } - ], - "time_consumption": 0.00010538101196289062 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954636.7264104, - "msecs": 726.4103889465332, - "relativeCreated": 22622.652769088745, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:16,726", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954636.72619, - "msecs": 726.1900901794434, - "relativeCreated": 22622.432470321655, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:16,726" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954636.7262866, - "msecs": 726.2866497039795, - "relativeCreated": 22622.52902984619, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:16,726" - } - ], - "time_consumption": 0.00012373924255371094 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954637.028664, - "msecs": 28.664112091064453, - "relativeCreated": 22924.906492233276, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:17,028", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954636.7267492, - "msecs": 726.7491817474365, - "relativeCreated": 22622.99156188965, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:16,726" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.727824, - "msecs": 727.8239727020264, - "relativeCreated": 22624.06635284424, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:16,727" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.774199, - "msecs": 774.1990089416504, - "relativeCreated": 22670.441389083862, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true'", - "asctime": "2023-02-09 15:57:16,774" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954636.7749696, - "msecs": 774.9695777893066, - "relativeCreated": 22671.21195793152, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:16,774" - } - ], - "time_consumption": 0.2536945343017578 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954637.029369, - "msecs": 29.369115829467773, - "relativeCreated": 22925.61149597168, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:17,029", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954637.0290976, - "msecs": 29.097557067871094, - "relativeCreated": 22925.339937210083, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:17,029" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954637.0292342, - "msecs": 29.23417091369629, - "relativeCreated": 22925.47655105591, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:17,029" - } - ], - "time_consumption": 0.00013494491577148438 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954637.029816, - "msecs": 29.8159122467041, - "relativeCreated": 22926.058292388916, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:17,029", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954637.02964, - "msecs": 29.63995933532715, - "relativeCreated": 22925.88233947754, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:17,029" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954637.029735, - "msecs": 29.735088348388672, - "relativeCreated": 22925.9774684906, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:17,029" - } - ], - "time_consumption": 8.082389831542969e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954637.331932, - "msecs": 331.93206787109375, - "relativeCreated": 23228.174448013306, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:17,331", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954637.0300746, - "msecs": 30.074596405029297, - "relativeCreated": 22926.31697654724, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/bed_light_di/state and payload false", - "asctime": "2023-02-09 15:57:17,030" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.031045, - "msecs": 31.044960021972656, - "relativeCreated": 22927.287340164185, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", - "asctime": "2023-02-09 15:57:17,031" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.032493, - "msecs": 32.49311447143555, - "relativeCreated": 22928.735494613647, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:17,032" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "{\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954637.0329373, - "msecs": 32.93728828430176, - "relativeCreated": 22929.179668426514, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:17,032" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_di", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_di", - "b'{\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.0338275, - "msecs": 33.82754325866699, - "relativeCreated": 22930.06992340088, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{\"state\": \"off\", \"brightness\": 127.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:17,033" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.1217415, - "msecs": 121.74153327941895, - "relativeCreated": 23017.98391342163, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false'", - "asctime": "2023-02-09 15:57:17,121" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_di.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_di/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.122623, - "msecs": 122.62296676635742, - "relativeCreated": 23018.86534690857, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:17,122" - } - ], - "time_consumption": 0.20930910110473633 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954637.3325148, - "msecs": 332.51476287841797, - "relativeCreated": 23228.75714302063, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:17,332", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954637.332301, - "msecs": 332.30090141296387, - "relativeCreated": 23228.543281555176, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:17,332" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954637.3324213, - "msecs": 332.42130279541016, - "relativeCreated": 23228.663682937622, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:17,332" - } - ], - "time_consumption": 9.34600830078125e-05 - } - ], - "time_consumption": 1.2120087146759033, - "time_start": "2023-02-09 15:57:16,120", - "time_finished": "2023-02-09 15:57:17,332" - }, - "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_ma": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_ma", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954637.3330872, - "msecs": 333.0872058868408, - "relativeCreated": 23229.329586029053, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: zigbee/ffe/sleep/bed_light_ma", - "asctime": "2023-02-09 15:57:17,333", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954637.3335373, - "msecs": 333.53734016418457, - "relativeCreated": 23229.779720306396, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:17,333", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954637.3333461, - "msecs": 333.3461284637451, - "relativeCreated": 23229.588508605957, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:17,333" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954637.3334506, - "msecs": 333.4505558013916, - "relativeCreated": 23229.692935943604, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:17,333" - } - ], - "time_consumption": 8.678436279296875e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954637.6356025, - "msecs": 635.6024742126465, - "relativeCreated": 23531.84485435486, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:17,635", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_ma/state", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954637.3337474, - "msecs": 333.74738693237305, - "relativeCreated": 23229.989767074585, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_ma/state and payload on", - "asctime": "2023-02-09 15:57:17,333" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_ma/state", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.3346932, - "msecs": 334.69319343566895, - "relativeCreated": 23230.93557357788, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma/state and payload b'on'", - "asctime": "2023-02-09 15:57:17,334" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_ma/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.336575, - "msecs": 336.5750312805176, - "relativeCreated": 23232.81741142273, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true'", - "asctime": "2023-02-09 15:57:17,336" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_ma/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.337263, - "msecs": 337.2631072998047, - "relativeCreated": 23233.505487442017, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:17,337" - } - ], - "time_consumption": 0.2983393669128418 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954637.63625, - "msecs": 636.2500190734863, - "relativeCreated": 23532.4923992157, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:17,636", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954637.636008, - "msecs": 636.0080242156982, - "relativeCreated": 23532.25040435791, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:17,636" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954637.636144, - "msecs": 636.1439228057861, - "relativeCreated": 23532.386302947998, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:17,636" - } - ], - "time_consumption": 0.00010609626770019531 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954637.6366487, - "msecs": 636.6486549377441, - "relativeCreated": 23532.891035079956, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:17,636", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954637.6364176, - "msecs": 636.4176273345947, - "relativeCreated": 23532.660007476807, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:17,636" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954637.6365585, - "msecs": 636.5585327148438, - "relativeCreated": 23532.800912857056, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:17,636" - } - ], - "time_consumption": 9.012222290039062e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954637.9378967, - "msecs": 937.896728515625, - "relativeCreated": 23834.139108657837, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:17,937", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_ma/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954637.6369228, - "msecs": 636.9228363037109, - "relativeCreated": 23533.165216445923, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state and payload false", - "asctime": "2023-02-09 15:57:17,636" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_ma/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.6380477, - "msecs": 638.0476951599121, - "relativeCreated": 23534.290075302124, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", - "asctime": "2023-02-09 15:57:17,638" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_ma/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.6397922, - "msecs": 639.7922039031982, - "relativeCreated": 23536.03458404541, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:17,639" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_ma/state", + "shellies/gfw/dirk/main_light/relay/0", "off" ], "levelname": "DEBUG", @@ -38340,21 +77265,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954637.6401894, - "msecs": 640.1894092559814, - "relativeCreated": 23536.431789398193, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", + "created": 1676441670.0586216, + "msecs": 58.62164497375488, + "relativeCreated": 67062.13688850403, + "thread": 140246908178432, + "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_ma/state and payload off", - "asctime": "2023-02-09 15:57:17,640" + "process": 509276, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:30,058" }, { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.state", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/bed_light_ma/state", + "shellies/gfw/dirk/main_light/relay/0", "b'off'" ], "levelname": "DEBUG", @@ -38367,21 +77292,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954637.6411605, - "msecs": 641.1604881286621, - "relativeCreated": 23537.402868270874, - "thread": 139894051313216, + "created": 1676441670.0599477, + "msecs": 59.94772911071777, + "relativeCreated": 67063.46297264099, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma/state and payload b'off'", - "asctime": "2023-02-09 15:57:17,641" + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:30,059" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_ma/state", + "videv/gfw/dirk/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -38394,133 +77319,49 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954637.6851501, - "msecs": 685.150146484375, - "relativeCreated": 23581.392526626587, - "thread": 139894051313216, + "created": 1676441670.0648332, + "msecs": 64.83316421508789, + "relativeCreated": 67068.34840774536, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", - "asctime": "2023-02-09 15:57:17,685" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_ma/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.6858747, - "msecs": 685.8747005462646, - "relativeCreated": 23582.117080688477, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:17,685" + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:30,064" } ], - "time_consumption": 0.25202202796936035 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954637.938582, - "msecs": 938.5819435119629, - "relativeCreated": 23834.824323654175, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:17,938", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954637.9383075, - "msecs": 938.307523727417, - "relativeCreated": 23834.54990386963, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:17,938" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954637.9384432, - "msecs": 938.4431838989258, - "relativeCreated": 23834.685564041138, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:17,938" - } - ], - "time_consumption": 0.00013875961303710938 - }, + "time_consumption": 0.2949676513671875 + } + ], + "time_consumption": 1.814028024673462, + "time_start": "2023-02-15 07:14:28,545", + "time_finished": "2023-02-15 07:14:30,359" + }, + "Power On/ Off test for device and virtual device: shellies/gfw/dirk/main_light": { + "name": "__tLogger__", + "msg": "Power On/ Off test for device and virtual device: shellies/gfw/dirk/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 27, + "funcName": "test_power_on_off", + "created": 1676441670.3605578, + "msecs": 360.55779457092285, + "relativeCreated": 67364.0730381012, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: shellies/gfw/dirk/main_light", + "asctime": "2023-02-15 07:14:30,360", + "moduleLogger": [], + "testcaseLogger": [ { "name": "__tLogger__", "msg": "Virtual device state is correct (Content %s and Type is %s).", @@ -38538,15 +77379,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954637.9389434, - "msecs": 938.9433860778809, - "relativeCreated": 23835.185766220093, - "thread": 139894075555840, + "created": 1676441670.3611376, + "msecs": 361.13762855529785, + "relativeCreated": 67364.65287208557, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:17,938", + "asctime": "2023-02-15 07:14:30,361", "moduleLogger": [ { "name": "__unittest__", @@ -38566,15 +77407,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954637.9387555, - "msecs": 938.7555122375488, - "relativeCreated": 23834.99789237976, - "thread": 139894075555840, + "created": 1676441670.3608325, + "msecs": 360.83245277404785, + "relativeCreated": 67364.34769630432, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:17,938" + "asctime": "2023-02-15 07:14:30,360" }, { "name": "__unittest__", @@ -38595,18 +77436,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954637.9388552, - "msecs": 938.8551712036133, - "relativeCreated": 23835.097551345825, - "thread": 139894075555840, + "created": 1676441670.361011, + "msecs": 361.0110282897949, + "relativeCreated": 67364.52627182007, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:17,938" + "asctime": "2023-02-15 07:14:30,361" } ], - "time_consumption": 8.821487426757812e-05 + "time_consumption": 0.0001266002655029297 }, { "name": "__tLogger__", @@ -38624,21 +77465,21 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954638.240072, - "msecs": 240.07201194763184, - "relativeCreated": 24136.314392089844, - "thread": 139894075555840, + "created": 1676441670.6628563, + "msecs": 662.8563404083252, + "relativeCreated": 67666.3715839386, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:18,240", + "asctime": "2023-02-15 07:14:30,662", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.state", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/bed_light_ma/state", + "shellies/gfw/dirk/main_light/relay/0", "on" ], "levelname": "DEBUG", @@ -38651,21 +77492,48 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954637.939166, - "msecs": 939.1660690307617, - "relativeCreated": 23835.408449172974, - "thread": 139894075555840, + "created": 1676441670.3614128, + "msecs": 361.41276359558105, + "relativeCreated": 67364.92800712585, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_ma/state and payload on", - "asctime": "2023-02-09 15:57:17,939" + "process": 509276, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:30,361" }, { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.state", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441670.3620436, + "msecs": 362.0436191558838, + "relativeCreated": 67365.55886268616, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:30,362" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/bed_light_ma/state", + "shellies/gfw/dirk/main_light/relay/0", "b'on'" ], "levelname": "DEBUG", @@ -38678,21 +77546,48 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954637.9402587, - "msecs": 940.2587413787842, - "relativeCreated": 23836.501121520996, - "thread": 139894051313216, + "created": 1676441670.3632472, + "msecs": 363.2471561431885, + "relativeCreated": 67366.76239967346, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma/state and payload b'on'", - "asctime": "2023-02-09 15:57:17,940" + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:30,363" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_ma/state", + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441670.3641222, + "msecs": 364.1221523284912, + "relativeCreated": 67367.63739585876, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:30,364" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/state", "b'true'" ], "levelname": "DEBUG", @@ -38705,45 +77600,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954637.942486, - "msecs": 942.486047744751, - "relativeCreated": 23838.728427886963, - "thread": 139894051313216, + "created": 1676441670.4115777, + "msecs": 411.5777015686035, + "relativeCreated": 67415.09294509888, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true'", - "asctime": "2023-02-09 15:57:17,942" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_ma/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954637.943155, - "msecs": 943.15505027771, - "relativeCreated": 23839.397430419922, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:17,943" + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:30,411" } ], - "time_consumption": 0.2969169616699219 + "time_consumption": 0.2512786388397217 }, { "name": "__tLogger__", @@ -38762,15 +77630,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954638.240694, - "msecs": 240.6940460205078, - "relativeCreated": 24136.93642616272, - "thread": 139894075555840, + "created": 1676441670.6634893, + "msecs": 663.4893417358398, + "relativeCreated": 67667.00458526611, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:18,240", + "asctime": "2023-02-15 07:14:30,663", "moduleLogger": [ { "name": "__unittest__", @@ -38790,15 +77658,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954638.2404544, - "msecs": 240.45443534851074, - "relativeCreated": 24136.696815490723, - "thread": 139894075555840, + "created": 1676441670.6632547, + "msecs": 663.2547378540039, + "relativeCreated": 67666.76998138428, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:18,240" + "asctime": "2023-02-15 07:14:30,663" }, { "name": "__unittest__", @@ -38819,15 +77687,15 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954638.2405891, - "msecs": 240.58914184570312, - "relativeCreated": 24136.831521987915, - "thread": 139894075555840, + "created": 1676441670.6633844, + "msecs": 663.3844375610352, + "relativeCreated": 67666.89968109131, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:18,240" + "asctime": "2023-02-15 07:14:30,663" } ], "time_consumption": 0.0001049041748046875 @@ -38849,15 +77717,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954638.2411332, - "msecs": 241.1332130432129, - "relativeCreated": 24137.375593185425, - "thread": 139894075555840, + "created": 1676441670.6638374, + "msecs": 663.8374328613281, + "relativeCreated": 67667.3526763916, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:18,241", + "asctime": "2023-02-15 07:14:30,663", "moduleLogger": [ { "name": "__unittest__", @@ -38877,15 +77745,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954638.240905, - "msecs": 240.9050464630127, - "relativeCreated": 24137.147426605225, - "thread": 139894075555840, + "created": 1676441670.6636555, + "msecs": 663.6555194854736, + "relativeCreated": 67667.17076301575, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:18,240" + "asctime": "2023-02-15 07:14:30,663" }, { "name": "__unittest__", @@ -38906,18 +77774,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954638.2410064, - "msecs": 241.00637435913086, - "relativeCreated": 24137.248754501343, - "thread": 139894075555840, + "created": 1676441670.6637518, + "msecs": 663.7518405914307, + "relativeCreated": 67667.2670841217, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:18,241" + "asctime": "2023-02-15 07:14:30,663" } ], - "time_consumption": 0.00012683868408203125 + "time_consumption": 8.559226989746094e-05 }, { "name": "__tLogger__", @@ -38935,21 +77803,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954638.5422943, - "msecs": 542.2942638397217, - "relativeCreated": 24438.536643981934, - "thread": 139894075555840, + "created": 1676441670.9651937, + "msecs": 965.1937484741211, + "relativeCreated": 67968.7089920044, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:18,542", + "asctime": "2023-02-15 07:14:30,965", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_ma/state", + "videv/gfw/dirk/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -38962,102 +77830,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954638.2414129, - "msecs": 241.41287803649902, - "relativeCreated": 24137.65525817871, - "thread": 139894075555840, + "created": 1676441670.6641166, + "msecs": 664.116621017456, + "relativeCreated": 67667.63186454773, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/bed_light_ma/state and payload false", - "asctime": "2023-02-09 15:57:18,241" + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:30,664" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0.command", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_ma/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.2424257, - "msecs": 242.42568016052246, - "relativeCreated": 24138.668060302734, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", - "asctime": "2023-02-09 15:57:18,242" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_ma/set", - "b'{\"state\": \"off\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.2438886, - "msecs": 243.88861656188965, - "relativeCreated": 24140.1309967041, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma/set and payload b'{\"state\": \"off\"}'", - "asctime": "2023-02-09 15:57:18,243" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_ma/state", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954638.2442434, - "msecs": 244.24338340759277, - "relativeCreated": 24140.485763549805, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/bed_light_ma/state and payload off", - "asctime": "2023-02-09 15:57:18,244" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.bed_light_ma.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/bed_light_ma/state", + "shellies/gfw/dirk/main_light/relay/0/command", "b'off'" ], "levelname": "DEBUG", @@ -39070,21 +77857,75 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954638.2450893, - "msecs": 245.08929252624512, - "relativeCreated": 24141.331672668457, - "thread": 139894051313216, + "created": 1676441670.6672046, + "msecs": 667.2046184539795, + "relativeCreated": 67670.71986198425, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/bed_light_ma/state and payload b'off'", - "asctime": "2023-02-09 15:57:18,245" + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:30,667" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.state", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/gfw/dirk/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441670.6676028, + "msecs": 667.6027774810791, + "relativeCreated": 67671.11802101135, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:30,667" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/bed_light_ma/state", + "shellies/gfw/dirk/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441670.6687458, + "msecs": 668.745756149292, + "relativeCreated": 67672.26099967957, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:30,668" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -39097,45 +77938,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954638.287914, - "msecs": 287.9140377044678, - "relativeCreated": 24184.15641784668, - "thread": 139894051313216, + "created": 1676441670.7595632, + "msecs": 759.5632076263428, + "relativeCreated": 67763.07845115662, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false'", - "asctime": "2023-02-09 15:57:18,287" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.bed_light_ma.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/bed_light_ma/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.2885756, - "msecs": 288.5756492614746, - "relativeCreated": 24184.818029403687, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/bed_light_ma/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:18,288" + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:30,759" } ], - "time_consumption": 0.25371861457824707 + "time_consumption": 0.20563054084777832 }, { "name": "__tLogger__", @@ -39154,15 +77968,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954638.5429757, - "msecs": 542.975664138794, - "relativeCreated": 24439.218044281006, - "thread": 139894075555840, + "created": 1676441670.9659648, + "msecs": 965.9647941589355, + "relativeCreated": 67969.48003768921, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:18,542", + "asctime": "2023-02-15 07:14:30,965", "moduleLogger": [ { "name": "__unittest__", @@ -39182,15 +77996,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954638.5426996, - "msecs": 542.6995754241943, - "relativeCreated": 24438.941955566406, - "thread": 139894075555840, + "created": 1676441670.96565, + "msecs": 965.6500816345215, + "relativeCreated": 67969.1653251648, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:18,542" + "asctime": "2023-02-15 07:14:30,965" }, { "name": "__unittest__", @@ -39211,376 +78025,22 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954638.5428677, - "msecs": 542.8676605224609, - "relativeCreated": 24439.110040664673, - "thread": 139894075555840, + "created": 1676441670.965802, + "msecs": 965.8019542694092, + "relativeCreated": 67969.31719779968, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:18,542" + "asctime": "2023-02-15 07:14:30,965" } ], - "time_consumption": 0.00010800361633300781 - } - ], - "time_consumption": 1.2098884582519531, - "time_start": "2023-02-09 15:57:17,333", - "time_finished": "2023-02-09 15:57:18,542" - }, - "Away mode test: zigbee/ffe/sleep/heating_valve": { - "name": "__tLogger__", - "msg": "Away mode test: zigbee/ffe/sleep/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 101, - "funcName": "test_away_mode", - "created": 1675954638.5434868, - "msecs": 543.4868335723877, - "relativeCreated": 24439.7292137146, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode test: zigbee/ffe/sleep/heating_valve", - "asctime": "2023-02-09 15:57:18,543", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 106, - "funcName": "__test_away_mode__", - "created": 1675954638.8455517, - "msecs": 845.5517292022705, - "relativeCreated": 24741.794109344482, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:18,845", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954638.543824, - "msecs": 543.8239574432373, - "relativeCreated": 24440.06633758545, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:18,543" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.5449243, - "msecs": 544.924259185791, - "relativeCreated": 24441.166639328003, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:18,544" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.564056, - "msecs": 564.0559196472168, - "relativeCreated": 24460.29829978943, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:18,564" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.564892, - "msecs": 564.892053604126, - "relativeCreated": 24461.134433746338, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:18,564" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 21.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.565582, - "msecs": 565.5820369720459, - "relativeCreated": 24461.824417114258, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", - "asctime": "2023-02-09 15:57:18,565" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954638.5660093, - "msecs": 566.0092830657959, - "relativeCreated": 24462.251663208008, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:18,566" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.5666232, - "msecs": 566.6232109069824, - "relativeCreated": 24462.865591049194, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:18,566" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.5675263, - "msecs": 567.5263404846191, - "relativeCreated": 24463.76872062683, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:18,567" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.5682309, - "msecs": 568.2308673858643, - "relativeCreated": 24464.473247528076, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:18,568" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.6126537, - "msecs": 612.6537322998047, - "relativeCreated": 24508.896112442017, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:18,612" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.654172, - "msecs": 654.1719436645508, - "relativeCreated": 24550.414323806763, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:18,654" - } - ], - "time_consumption": 0.19137978553771973 + "time_consumption": 0.0001628398895263672 }, { "name": "__tLogger__", - "msg": "Away mode is correct (Content %s and Type is %s).", + "msg": "Virtual device state is correct (Content %s and Type is %s).", "args": [ "False", "" @@ -39595,21 +78055,21 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954638.846125, - "msecs": 846.1248874664307, - "relativeCreated": 24742.367267608643, - "thread": 139894075555840, + "created": 1676441670.9663954, + "msecs": 966.395378112793, + "relativeCreated": 67969.91062164307, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Away mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:18,846", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:30,966", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Away mode", + "Virtual device state", "False", "" ], @@ -39623,21 +78083,21 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954638.8459086, - "msecs": 845.9086418151855, - "relativeCreated": 24742.151021957397, - "thread": 139894075555840, + "created": 1676441670.9661648, + "msecs": 966.1648273468018, + "relativeCreated": 67969.68007087708, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Away mode): False ()", - "asctime": "2023-02-09 15:57:18,845" + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:30,966" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Away mode", + "Virtual device state", "=", "False", "" @@ -39652,5987 +78112,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954638.8460314, - "msecs": 846.0314273834229, - "relativeCreated": 24742.273807525635, - "thread": 139894075555840, + "created": 1676441670.966275, + "msecs": 966.2749767303467, + "relativeCreated": 67969.79022026062, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Away mode): result = False ()", - "asctime": "2023-02-09 15:57:18,846" + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:30,966" } ], - "time_consumption": 9.34600830078125e-05 + "time_consumption": 0.00012040138244628906 }, { "name": "__tLogger__", - "msg": "Activating away mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 113, - "funcName": "__test_away_mode__", - "created": 1675954639.1483274, - "msecs": 148.32735061645508, - "relativeCreated": 25044.569730758667, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Activating away mode", - "asctime": "2023-02-09 15:57:19,148", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/away_mode", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954638.8464553, - "msecs": 846.4553356170654, - "relativeCreated": 24742.697715759277, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/away_mode and payload true", - "asctime": "2023-02-09 15:57:18,846" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/away_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.8474634, - "msecs": 847.4633693695068, - "relativeCreated": 24743.70574951172, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'true'", - "asctime": "2023-02-09 15:57:18,847" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 16.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.8638935, - "msecs": 863.8935089111328, - "relativeCreated": 24760.135889053345, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 16.5}'", - "asctime": "2023-02-09 15:57:18,863" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954638.864381, - "msecs": 864.3810749053955, - "relativeCreated": 24760.623455047607, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:18,864" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'16.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.8649037, - "msecs": 864.9036884307861, - "relativeCreated": 24761.146068572998, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'16.5'", - "asctime": "2023-02-09 15:57:18,864" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.865659, - "msecs": 865.6589984893799, - "relativeCreated": 24761.90137863159, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:18,865" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/away_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.866218, - "msecs": 866.218090057373, - "relativeCreated": 24762.460470199585, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'true'", - "asctime": "2023-02-09 15:57:18,866" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.8667285, - "msecs": 866.7285442352295, - "relativeCreated": 24762.97092437744, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:18,866" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.8672268, - "msecs": 867.2268390655518, - "relativeCreated": 24763.469219207764, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:18,867" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.9135103, - "msecs": 913.5103225708008, - "relativeCreated": 24809.752702713013, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:18,913" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954638.9495714, - "msecs": 949.5713710784912, - "relativeCreated": 24845.813751220703, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:18,949" - } - ], - "time_consumption": 0.19875597953796387 - }, - { - "name": "__tLogger__", - "msg": "Away mode is correct (Content %s and Type is %s).", + "msg": "Changing switching device state to '%s'", "args": [ - "True", - "" + true ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954639.1488945, - "msecs": 148.8945484161377, - "relativeCreated": 25045.13692855835, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:19,148", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Away mode", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954639.14868, - "msecs": 148.6799716949463, - "relativeCreated": 25044.92235183716, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Away mode): True ()", - "asctime": "2023-02-09 15:57:19,148" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Away mode", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954639.1487997, - "msecs": 148.79965782165527, - "relativeCreated": 25045.042037963867, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Away mode): result = True ()", - "asctime": "2023-02-09 15:57:19,148" - } - ], - "time_consumption": 9.489059448242188e-05 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "16.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954639.149276, - "msecs": 149.2760181427002, - "relativeCreated": 25045.518398284912, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 16.5 and Type is ).", - "asctime": "2023-02-09 15:57:19,149", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954639.1490946, - "msecs": 149.0945816040039, - "relativeCreated": 25045.336961746216, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 16.5 ()", - "asctime": "2023-02-09 15:57:19,149" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954639.1491919, - "msecs": 149.19185638427734, - "relativeCreated": 25045.43423652649, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 16.5 ()", - "asctime": "2023-02-09 15:57:19,149" - } - ], - "time_consumption": 8.416175842285156e-05 - }, - { - "name": "__tLogger__", - "msg": "Deactivating away mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 119, - "funcName": "__test_away_mode__", - "created": 1675954639.4514613, - "msecs": 451.4613151550293, - "relativeCreated": 25347.70369529724, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Deactivating away mode", - "asctime": "2023-02-09 15:57:19,451", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/away_mode", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954639.1495771, - "msecs": 149.57714080810547, - "relativeCreated": 25045.819520950317, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/away_mode and payload false", - "asctime": "2023-02-09 15:57:19,149" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/away_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.1505537, - "msecs": 150.55370330810547, - "relativeCreated": 25046.796083450317, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'false'", - "asctime": "2023-02-09 15:57:19,150" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 21.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.160737, - "msecs": 160.7370376586914, - "relativeCreated": 25056.979417800903, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", - "asctime": "2023-02-09 15:57:19,160" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954639.1612196, - "msecs": 161.21959686279297, - "relativeCreated": 25057.461977005005, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:19,161" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.1617413, - "msecs": 161.7412567138672, - "relativeCreated": 25057.98363685608, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:19,161" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.1624067, - "msecs": 162.40668296813965, - "relativeCreated": 25058.64906311035, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:19,162" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/away_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.1629455, - "msecs": 162.94550895690918, - "relativeCreated": 25059.18788909912, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'false'", - "asctime": "2023-02-09 15:57:19,162" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.1634524, - "msecs": 163.4523868560791, - "relativeCreated": 25059.69476699829, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:19,163" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.1639888, - "msecs": 163.98882865905762, - "relativeCreated": 25060.23120880127, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:19,163" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.2093875, - "msecs": 209.38754081726074, - "relativeCreated": 25105.629920959473, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:19,209" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.2509584, - "msecs": 250.95844268798828, - "relativeCreated": 25147.2008228302, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:19,250" - } - ], - "time_consumption": 0.20050287246704102 - }, - { - "name": "__tLogger__", - "msg": "Away mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954639.4521306, - "msecs": 452.1305561065674, - "relativeCreated": 25348.37293624878, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:19,452", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Away mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954639.4518838, - "msecs": 451.88379287719727, - "relativeCreated": 25348.12617301941, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Away mode): False ()", - "asctime": "2023-02-09 15:57:19,451" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Away mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954639.452023, - "msecs": 452.0230293273926, - "relativeCreated": 25348.265409469604, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Away mode): result = False ()", - "asctime": "2023-02-09 15:57:19,452" - } - ], - "time_consumption": 0.00010752677917480469 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "21.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954639.452508, - "msecs": 452.50797271728516, - "relativeCreated": 25348.750352859497, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 21.5 and Type is ).", - "asctime": "2023-02-09 15:57:19,452", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954639.4523108, - "msecs": 452.31080055236816, - "relativeCreated": 25348.55318069458, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 21.5 ()", - "asctime": "2023-02-09 15:57:19,452" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954639.4524162, - "msecs": 452.41618156433105, - "relativeCreated": 25348.658561706543, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 21.5 ()", - "asctime": "2023-02-09 15:57:19,452" - } - ], - "time_consumption": 9.179115295410156e-05 - } - ], - "time_consumption": 0.9090211391448975, - "time_start": "2023-02-09 15:57:18,543", - "time_finished": "2023-02-09 15:57:19,452" - }, - "Boost mode test: zigbee/ffe/sleep/heating_valve": { - "name": "__tLogger__", - "msg": "Boost mode test: zigbee/ffe/sleep/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 128, - "funcName": "test_boost_mode", - "created": 1675954639.45296, - "msecs": 452.9600143432617, - "relativeCreated": 25349.202394485474, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost mode test: zigbee/ffe/sleep/heating_valve", - "asctime": "2023-02-09 15:57:19,452", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 133, - "funcName": "__test_boost_mode__", - "created": 1675954639.7552032, - "msecs": 755.2032470703125, - "relativeCreated": 25651.445627212524, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:19,755", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954639.4532905, - "msecs": 453.2904624938965, - "relativeCreated": 25349.53284263611, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:19,453" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.4543636, - "msecs": 454.3635845184326, - "relativeCreated": 25350.605964660645, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:19,454" - } - ], - "time_consumption": 0.3008396625518799 - }, - { - "name": "__tLogger__", - "msg": "Boost timer is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954639.7558353, - "msecs": 755.8352947235107, - "relativeCreated": 25652.077674865723, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost timer is correct (Content 0 and Type is ).", - "asctime": "2023-02-09 15:57:19,755", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Boost timer", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954639.7555907, - "msecs": 755.5906772613525, - "relativeCreated": 25651.833057403564, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Boost timer): 0 ()", - "asctime": "2023-02-09 15:57:19,755" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Boost timer", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954639.7557278, - "msecs": 755.7277679443359, - "relativeCreated": 25651.970148086548, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Boost timer): result = 0 ()", - "asctime": "2023-02-09 15:57:19,755" - } - ], - "time_consumption": 0.00010752677917480469 - }, - { - "name": "__tLogger__", - "msg": "Activating boost mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 140, - "funcName": "__test_boost_mode__", - "created": 1675954640.0581336, - "msecs": 58.133602142333984, - "relativeCreated": 25954.375982284546, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Activating boost mode", - "asctime": "2023-02-09 15:57:20,058", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.start_boost", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/start_boost", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954639.7561743, - "msecs": 756.1743259429932, - "relativeCreated": 25652.416706085205, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/start_boost and payload true", - "asctime": "2023-02-09 15:57:19,756" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.start_boost", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/start_boost", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.757298, - "msecs": 757.2979927062988, - "relativeCreated": 25653.54037284851, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/start_boost and payload b'true'", - "asctime": "2023-02-09 15:57:19,757" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.boost_timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/boost_timer", - "b'900'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.7709289, - "msecs": 770.9288597106934, - "relativeCreated": 25667.171239852905, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/boost_timer and payload b'900'", - "asctime": "2023-02-09 15:57:19,770" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.7716212, - "msecs": 771.6212272644043, - "relativeCreated": 25667.863607406616, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:19,771" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 30}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.7722518, - "msecs": 772.2518444061279, - "relativeCreated": 25668.49422454834, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", - "asctime": "2023-02-09 15:57:19,772" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954639.7726822, - "msecs": 772.6821899414062, - "relativeCreated": 25668.924570083618, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:19,772" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'30'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.7733068, - "msecs": 773.3068466186523, - "relativeCreated": 25669.549226760864, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'30'", - "asctime": "2023-02-09 15:57:19,773" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.774079, - "msecs": 774.0790843963623, - "relativeCreated": 25670.321464538574, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:19,774" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.7746816, - "msecs": 774.681568145752, - "relativeCreated": 25670.923948287964, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:19,774" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.817519, - "msecs": 817.518949508667, - "relativeCreated": 25713.76132965088, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:19,817" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954639.8590424, - "msecs": 859.0424060821533, - "relativeCreated": 25755.284786224365, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:19,859" - } - ], - "time_consumption": 0.19909119606018066 - }, - { - "name": "__tLogger__", - "msg": "Boost timer is greater expectation (Content %s and Type is %s).", - "args": [ - "900", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 230, - "funcName": "greater_chk", - "created": 1675954640.0587828, - "msecs": 58.78281593322754, - "relativeCreated": 25955.02519607544, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost timer is greater expectation (Content 900 and Type is ).", - "asctime": "2023-02-09 15:57:20,058", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Boost timer", - "900", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954640.0585263, - "msecs": 58.52627754211426, - "relativeCreated": 25954.768657684326, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Boost timer): 900 ()", - "asctime": "2023-02-09 15:57:20,058" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Boost timer", - ">", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954640.0586705, - "msecs": 58.6705207824707, - "relativeCreated": 25954.912900924683, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Boost timer): result > 0 ()", - "asctime": "2023-02-09 15:57:20,058" - } - ], - "time_consumption": 0.00011229515075683594 - }, - { - "name": "__tLogger__", - "msg": "Setting postconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 145, - "funcName": "__test_boost_mode__", - "created": 1675954640.3600583, - "msecs": 360.0583076477051, - "relativeCreated": 26256.300687789917, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting postconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:20,360", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954640.0590653, - "msecs": 59.06534194946289, - "relativeCreated": 25955.307722091675, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:20,059" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.0601754, - "msecs": 60.175418853759766, - "relativeCreated": 25956.41779899597, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:20,060" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.boost_timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/boost_timer", - "b'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.0737321, - "msecs": 73.73213768005371, - "relativeCreated": 25969.974517822266, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/boost_timer and payload b'0'", - "asctime": "2023-02-09 15:57:20,073" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.0744262, - "msecs": 74.42617416381836, - "relativeCreated": 25970.66855430603, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:20,074" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 21.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.0749888, - "msecs": 74.98884201049805, - "relativeCreated": 25971.23122215271, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", - "asctime": "2023-02-09 15:57:20,074" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954640.0753818, - "msecs": 75.38175582885742, - "relativeCreated": 25971.62413597107, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:20,075" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.075897, - "msecs": 75.8969783782959, - "relativeCreated": 25972.139358520508, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:20,075" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.0765722, - "msecs": 76.57217979431152, - "relativeCreated": 25972.814559936523, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:20,076" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.0771317, - "msecs": 77.13174819946289, - "relativeCreated": 25973.374128341675, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:20,077" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.1249878, - "msecs": 124.98784065246582, - "relativeCreated": 26021.230220794678, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:20,124" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.1658635, - "msecs": 165.8635139465332, - "relativeCreated": 26062.105894088745, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:20,165" - } - ], - "time_consumption": 0.19419479370117188 - }, - { - "name": "__tLogger__", - "msg": "Boost timer is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954640.3606281, - "msecs": 360.6281280517578, - "relativeCreated": 26256.87050819397, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost timer is correct (Content 0 and Type is ).", - "asctime": "2023-02-09 15:57:20,360", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Boost timer", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954640.3604121, - "msecs": 360.4121208190918, - "relativeCreated": 26256.654500961304, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Boost timer): 0 ()", - "asctime": "2023-02-09 15:57:20,360" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Boost timer", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954640.3605325, - "msecs": 360.5325222015381, - "relativeCreated": 26256.77490234375, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Boost timer): result = 0 ()", - "asctime": "2023-02-09 15:57:20,360" - } - ], - "time_consumption": 9.560585021972656e-05 - } - ], - "time_consumption": 0.9076681137084961, - "time_start": "2023-02-09 15:57:19,452", - "time_finished": "2023-02-09 15:57:20,360" - }, - "Default temperature test for device and virtual device: zigbee/ffe/sleep/heating_valve": { - "name": "__tLogger__", - "msg": "Default temperature test for device and virtual device: zigbee/ffe/sleep/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_default_temperature", - "created": 1675954640.3610911, - "msecs": 361.09113693237305, - "relativeCreated": 26257.333517074585, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Default temperature test for device and virtual device: zigbee/ffe/sleep/heating_valve", - "asctime": "2023-02-09 15:57:20,361", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Valve setpoint to %.1f)", - "args": [ - 16.5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 60, - "funcName": "__test_default_temperature__", - "created": 1675954640.663343, - "msecs": 663.3429527282715, - "relativeCreated": 26559.585332870483, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Valve setpoint to 16.5)", - "asctime": "2023-02-09 15:57:20,663", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954640.361464, - "msecs": 361.4640235900879, - "relativeCreated": 26257.7064037323, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:20,361" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.362438, - "msecs": 362.4379634857178, - "relativeCreated": 26258.68034362793, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:20,362" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 16.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.3806758, - "msecs": 380.6757926940918, - "relativeCreated": 26276.918172836304, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 16.5}'", - "asctime": "2023-02-09 15:57:20,380" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'16.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.3813791, - "msecs": 381.3791275024414, - "relativeCreated": 26277.621507644653, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'16.5'", - "asctime": "2023-02-09 15:57:20,381" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.3825123, - "msecs": 382.51233100891113, - "relativeCreated": 26278.754711151123, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:20,382" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "b'16.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.3830853, - "msecs": 383.0852508544922, - "relativeCreated": 26279.327630996704, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'16.5'", - "asctime": "2023-02-09 15:57:20,383" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.383671, - "msecs": 383.6710453033447, - "relativeCreated": 26279.913425445557, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:20,383" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.3841884, - "msecs": 384.1884136199951, - "relativeCreated": 26280.430793762207, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:20,384" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.384767, - "msecs": 384.7670555114746, - "relativeCreated": 26281.009435653687, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:20,384" - } - ], - "time_consumption": 0.2785758972167969 - }, - { - "name": "__tLogger__", - "msg": "Valve temperature setpoint (is not default temperature) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954640.6640723, - "msecs": 664.0722751617432, - "relativeCreated": 26560.314655303955, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve temperature setpoint (is not default temperature) is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:20,664", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve temperature setpoint (is not default temperature)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954640.6638212, - "msecs": 663.8212203979492, - "relativeCreated": 26560.06360054016, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve temperature setpoint (is not default temperature)): True ()", - "asctime": "2023-02-09 15:57:20,663" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve temperature setpoint (is not default temperature)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954640.663961, - "msecs": 663.9609336853027, - "relativeCreated": 26560.203313827515, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve temperature setpoint (is not default temperature)): result = True ()", - "asctime": "2023-02-09 15:57:20,663" - } - ], - "time_consumption": 0.00011134147644042969 - }, - { - "name": "__tLogger__", - "msg": "Triggering set to default temperature (%.1f)", - "args": [ - 21.5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 66, - "funcName": "__test_default_temperature__", - "created": 1675954640.9663053, - "msecs": 966.3052558898926, - "relativeCreated": 26862.547636032104, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Triggering set to default temperature (21.5)", - "asctime": "2023-02-09 15:57:20,966", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954640.6643538, - "msecs": 664.3538475036621, - "relativeCreated": 26560.596227645874, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:20,664" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.665504, - "msecs": 665.503978729248, - "relativeCreated": 26561.74635887146, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:20,665" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.6854615, - "msecs": 685.4615211486816, - "relativeCreated": 26581.703901290894, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:20,685" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.6862326, - "msecs": 686.2325668334961, - "relativeCreated": 26582.474946975708, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:20,686" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 21.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.68687, - "msecs": 686.8700981140137, - "relativeCreated": 26583.112478256226, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", - "asctime": "2023-02-09 15:57:20,686" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954640.68732, - "msecs": 687.3199939727783, - "relativeCreated": 26583.56237411499, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:20,687" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.687917, - "msecs": 687.9169940948486, - "relativeCreated": 26584.15937423706, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:20,687" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.6886723, - "msecs": 688.6723041534424, - "relativeCreated": 26584.914684295654, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:20,688" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.6892943, - "msecs": 689.2943382263184, - "relativeCreated": 26585.53671836853, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:20,689" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.7376733, - "msecs": 737.673282623291, - "relativeCreated": 26633.915662765503, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:20,737" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.7830434, - "msecs": 783.043384552002, - "relativeCreated": 26679.285764694214, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:20,783" - } - ], - "time_consumption": 0.18326187133789062 - }, - { - "name": "__tLogger__", - "msg": "Valve temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "21.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954640.9669888, - "msecs": 966.9888019561768, - "relativeCreated": 26863.23118209839, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve temperature setpoint is correct (Content 21.5 and Type is ).", - "asctime": "2023-02-09 15:57:20,966", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve temperature setpoint", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954640.966733, - "msecs": 966.7329788208008, - "relativeCreated": 26862.975358963013, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve temperature setpoint): 21.5 ()", - "asctime": "2023-02-09 15:57:20,966" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve temperature setpoint", - "=", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954640.9668765, - "msecs": 966.8765068054199, - "relativeCreated": 26863.118886947632, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve temperature setpoint): result = 21.5 ()", - "asctime": "2023-02-09 15:57:20,966" - } - ], - "time_consumption": 0.00011229515075683594 - } - ], - "time_consumption": 0.6058976650238037, - "time_start": "2023-02-09 15:57:20,361", - "time_finished": "2023-02-09 15:57:20,966" - }, - "Summer mode test: zigbee/ffe/sleep/heating_valve": { - "name": "__tLogger__", - "msg": "Summer mode test: zigbee/ffe/sleep/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "test_summer_mode", - "created": 1675954640.967436, - "msecs": 967.4360752105713, - "relativeCreated": 26863.678455352783, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode test: zigbee/ffe/sleep/heating_valve", - "asctime": "2023-02-09 15:57:20,967", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 79, - "funcName": "__test_summer_mode__", - "created": 1675954641.2696855, - "msecs": 269.6855068206787, - "relativeCreated": 27165.92788696289, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:21,269", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954640.967744, - "msecs": 967.7441120147705, - "relativeCreated": 26863.986492156982, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:20,967" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954640.968846, - "msecs": 968.8460826873779, - "relativeCreated": 26865.08846282959, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:20,968" - } - ], - "time_consumption": 0.3008394241333008 - }, - { - "name": "__tLogger__", - "msg": "Summer mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954641.2703452, - "msecs": 270.34521102905273, - "relativeCreated": 27166.587591171265, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:21,270", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Summer mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954641.2700655, - "msecs": 270.0655460357666, - "relativeCreated": 27166.30792617798, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Summer mode): False ()", - "asctime": "2023-02-09 15:57:21,270" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Summer mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954641.2702036, - "msecs": 270.2035903930664, - "relativeCreated": 27166.44597053528, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Summer mode): result = False ()", - "asctime": "2023-02-09 15:57:21,270" - } - ], - "time_consumption": 0.00014162063598632812 - }, - { - "name": "__tLogger__", - "msg": "Activating summer mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 86, - "funcName": "__test_summer_mode__", - "created": 1675954641.572622, - "msecs": 572.6220607757568, - "relativeCreated": 27468.86444091797, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Activating summer mode", - "asctime": "2023-02-09 15:57:21,572", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/summer_mode", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954641.270683, - "msecs": 270.68305015563965, - "relativeCreated": 27166.92543029785, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/summer_mode and payload true", - "asctime": "2023-02-09 15:57:21,270" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/summer_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.2717662, - "msecs": 271.76618576049805, - "relativeCreated": 27168.00856590271, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'true'", - "asctime": "2023-02-09 15:57:21,271" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.2896128, - "msecs": 289.6127700805664, - "relativeCreated": 27185.85515022278, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 5}'", - "asctime": "2023-02-09 15:57:21,289" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954641.2901647, - "msecs": 290.1647090911865, - "relativeCreated": 27186.4070892334, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:21,290" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.2907774, - "msecs": 290.77744483947754, - "relativeCreated": 27187.01982498169, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'5'", - "asctime": "2023-02-09 15:57:21,290" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.2915921, - "msecs": 291.5921211242676, - "relativeCreated": 27187.83450126648, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:21,291" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/summer_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.2922056, - "msecs": 292.2055721282959, - "relativeCreated": 27188.447952270508, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'true'", - "asctime": "2023-02-09 15:57:21,292" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.2927866, - "msecs": 292.7865982055664, - "relativeCreated": 27189.02897834778, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:21,292" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.2933943, - "msecs": 293.3943271636963, - "relativeCreated": 27189.63670730591, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:21,293" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.3376458, - "msecs": 337.6457691192627, - "relativeCreated": 27233.888149261475, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:21,337" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.3790567, - "msecs": 379.0566921234131, - "relativeCreated": 27275.299072265625, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:21,379" - } - ], - "time_consumption": 0.19356536865234375 - }, - { - "name": "__tLogger__", - "msg": "Summer mode is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954641.5732968, - "msecs": 573.2967853546143, - "relativeCreated": 27469.539165496826, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:21,573", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Summer mode", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954641.5730162, - "msecs": 573.0161666870117, - "relativeCreated": 27469.258546829224, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Summer mode): True ()", - "asctime": "2023-02-09 15:57:21,573" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Summer mode", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954641.5731862, - "msecs": 573.1861591339111, - "relativeCreated": 27469.428539276123, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Summer mode): result = True ()", - "asctime": "2023-02-09 15:57:21,573" - } - ], - "time_consumption": 0.000110626220703125 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954641.5736573, - "msecs": 573.6572742462158, - "relativeCreated": 27469.899654388428, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:21,573", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954641.5734673, - "msecs": 573.4672546386719, - "relativeCreated": 27469.709634780884, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 5 ()", - "asctime": "2023-02-09 15:57:21,573" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954641.573567, - "msecs": 573.5669136047363, - "relativeCreated": 27469.80929374695, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 5 ()", - "asctime": "2023-02-09 15:57:21,573" - } - ], - "time_consumption": 9.036064147949219e-05 - }, - { - "name": "__tLogger__", - "msg": "Deactivating summer mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__test_summer_mode__", - "created": 1675954641.8757608, - "msecs": 875.7607936859131, - "relativeCreated": 27772.003173828125, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Deactivating summer mode", - "asctime": "2023-02-09 15:57:21,875", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/summer_mode", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954641.5739436, - "msecs": 573.9436149597168, - "relativeCreated": 27470.18599510193, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/summer_mode and payload false", - "asctime": "2023-02-09 15:57:21,573" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/summer_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.575062, - "msecs": 575.0620365142822, - "relativeCreated": 27471.304416656494, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'false'", - "asctime": "2023-02-09 15:57:21,575" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 21.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.5870988, - "msecs": 587.0988368988037, - "relativeCreated": 27483.341217041016, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", - "asctime": "2023-02-09 15:57:21,587" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954641.587674, - "msecs": 587.6739025115967, - "relativeCreated": 27483.91628265381, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:21,587" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.5882604, - "msecs": 588.2604122161865, - "relativeCreated": 27484.5027923584, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:21,588" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.5890737, - "msecs": 589.073657989502, - "relativeCreated": 27485.316038131714, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:21,589" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/summer_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.5897028, - "msecs": 589.702844619751, - "relativeCreated": 27485.945224761963, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'false'", - "asctime": "2023-02-09 15:57:21,589" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.590282, - "msecs": 590.2819633483887, - "relativeCreated": 27486.5243434906, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:21,590" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.590854, - "msecs": 590.8539295196533, - "relativeCreated": 27487.096309661865, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:21,590" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.638489, - "msecs": 638.4890079498291, - "relativeCreated": 27534.73138809204, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:21,638" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.6820307, - "msecs": 682.0306777954102, - "relativeCreated": 27578.273057937622, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:21,682" - } - ], - "time_consumption": 0.19373011589050293 - }, - { - "name": "__tLogger__", - "msg": "Summer mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954641.87643, - "msecs": 876.4300346374512, - "relativeCreated": 27772.672414779663, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:21,876", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Summer mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954641.876147, - "msecs": 876.1470317840576, - "relativeCreated": 27772.38941192627, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Summer mode): False ()", - "asctime": "2023-02-09 15:57:21,876" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Summer mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954641.8762846, - "msecs": 876.2845993041992, - "relativeCreated": 27772.52697944641, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Summer mode): result = False ()", - "asctime": "2023-02-09 15:57:21,876" - } - ], - "time_consumption": 0.00014543533325195312 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "21.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954641.8768394, - "msecs": 876.8393993377686, - "relativeCreated": 27773.08177947998, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 21.5 and Type is ).", - "asctime": "2023-02-09 15:57:21,876", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954641.8766148, - "msecs": 876.6148090362549, - "relativeCreated": 27772.857189178467, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 21.5 ()", - "asctime": "2023-02-09 15:57:21,876" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954641.876734, - "msecs": 876.7340183258057, - "relativeCreated": 27772.976398468018, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 21.5 ()", - "asctime": "2023-02-09 15:57:21,876" - } - ], - "time_consumption": 0.00010538101196289062 - } - ], - "time_consumption": 0.9094033241271973, - "time_start": "2023-02-09 15:57:20,967", - "time_finished": "2023-02-09 15:57:21,876" - }, - "User temperature setpoint test for device and virtual device: zigbee/ffe/sleep/heating_valve": { - "name": "__tLogger__", - "msg": "User temperature setpoint test for device and virtual device: zigbee/ffe/sleep/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "test_user_temperature_setpoint", - "created": 1675954641.877316, - "msecs": 877.3159980773926, - "relativeCreated": 27773.558378219604, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "User temperature setpoint test for device and virtual device: zigbee/ffe/sleep/heating_valve", - "asctime": "2023-02-09 15:57:21,877", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Changing valve temperature setpoint to '%.1f'", - "args": [ - 16.5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 33, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954642.179636, - "msecs": 179.63600158691406, - "relativeCreated": 28075.878381729126, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing valve temperature setpoint to '16.5'", - "asctime": "2023-02-09 15:57:22,179", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954641.8776917, - "msecs": 877.6917457580566, - "relativeCreated": 27773.93412590027, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:21,877" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.8788078, - "msecs": 878.807783126831, - "relativeCreated": 27775.050163269043, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:21,878" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 16.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.9015398, - "msecs": 901.5398025512695, - "relativeCreated": 27797.78218269348, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 16.5}'", - "asctime": "2023-02-09 15:57:21,901" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'16.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.9022973, - "msecs": 902.2972583770752, - "relativeCreated": 27798.539638519287, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'16.5'", - "asctime": "2023-02-09 15:57:21,902" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.9030275, - "msecs": 903.0275344848633, - "relativeCreated": 27799.269914627075, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:21,903" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "b'16.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.9036381, - "msecs": 903.6381244659424, - "relativeCreated": 27799.880504608154, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'16.5'", - "asctime": "2023-02-09 15:57:21,903" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.9042525, - "msecs": 904.2525291442871, - "relativeCreated": 27800.4949092865, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:21,904" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.9048266, - "msecs": 904.8266410827637, - "relativeCreated": 27801.069021224976, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:21,904" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954641.905498, - "msecs": 905.4980278015137, - "relativeCreated": 27801.740407943726, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:21,905" - } - ], - "time_consumption": 0.2741379737854004 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "16.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954642.1803436, - "msecs": 180.3436279296875, - "relativeCreated": 28076.5860080719, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 16.5 and Type is ).", - "asctime": "2023-02-09 15:57:22,180", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954642.180056, - "msecs": 180.05609512329102, - "relativeCreated": 28076.298475265503, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 16.5 ()", - "asctime": "2023-02-09 15:57:22,180" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954642.180228, - "msecs": 180.22799491882324, - "relativeCreated": 28076.470375061035, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 16.5 ()", - "asctime": "2023-02-09 15:57:22,180" - } - ], - "time_consumption": 0.00011563301086425781 - }, - { - "name": "__tLogger__", - "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", - "args": [ - "16.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954642.1807125, - "msecs": 180.71246147155762, - "relativeCreated": 28076.95484161377, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device user temperature is correct (Content 16.5 and Type is ).", - "asctime": "2023-02-09 15:57:22,180", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device user temperature", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954642.1805208, - "msecs": 180.52077293395996, - "relativeCreated": 28076.763153076172, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device user temperature): 16.5 ()", - "asctime": "2023-02-09 15:57:22,180" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device user temperature", - "=", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954642.1806216, - "msecs": 180.62162399291992, - "relativeCreated": 28076.864004135132, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device user temperature): result = 16.5 ()", - "asctime": "2023-02-09 15:57:22,180" - } - ], - "time_consumption": 9.083747863769531e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing videv user temperature setpoint to '%.1f'", - "args": [ - 21.5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 41, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954642.4819274, - "msecs": 481.92739486694336, - "relativeCreated": 28378.169775009155, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing videv user temperature setpoint to '21.5'", - "asctime": "2023-02-09 15:57:22,481", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "21.5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954642.1810315, - "msecs": 181.0314655303955, - "relativeCreated": 28077.273845672607, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload 21.5", - "asctime": "2023-02-09 15:57:22,181" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.182189, - "msecs": 182.1889877319336, - "relativeCreated": 28078.431367874146, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:22,182" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 21.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.2017944, - "msecs": 201.79438591003418, - "relativeCreated": 28098.036766052246, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", - "asctime": "2023-02-09 15:57:22,201" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954642.2023385, - "msecs": 202.33845710754395, - "relativeCreated": 28098.580837249756, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:22,202" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.202971, - "msecs": 202.9709815979004, - "relativeCreated": 28099.213361740112, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:22,202" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.2037337, - "msecs": 203.7336826324463, - "relativeCreated": 28099.97606277466, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:22,203" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.20434, - "msecs": 204.33998107910156, - "relativeCreated": 28100.582361221313, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:22,204" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.20492, - "msecs": 204.92005348205566, - "relativeCreated": 28101.162433624268, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:22,204" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.2055416, - "msecs": 205.54161071777344, - "relativeCreated": 28101.783990859985, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:22,205" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.2538788, - "msecs": 253.87883186340332, - "relativeCreated": 28150.121212005615, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:22,253" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.2980204, - "msecs": 298.0203628540039, - "relativeCreated": 28194.262742996216, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:22,298" - } - ], - "time_consumption": 0.18390703201293945 - }, - { - "name": "__tLogger__", - "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "21.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954642.482613, - "msecs": 482.61308670043945, - "relativeCreated": 28378.85546684265, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve device temperature setpoint is correct (Content 21.5 and Type is ).", - "asctime": "2023-02-09 15:57:22,482", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve device temperature setpoint", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954642.4823334, - "msecs": 482.3334217071533, - "relativeCreated": 28378.575801849365, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve device temperature setpoint): 21.5 ()", - "asctime": "2023-02-09 15:57:22,482" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve device temperature setpoint", - "=", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954642.4824705, - "msecs": 482.4705123901367, - "relativeCreated": 28378.71289253235, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve device temperature setpoint): result = 21.5 ()", - "asctime": "2023-02-09 15:57:22,482" - } - ], - "time_consumption": 0.00014257431030273438 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "21.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954642.4829803, - "msecs": 482.98025131225586, - "relativeCreated": 28379.222631454468, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 21.5 and Type is ).", - "asctime": "2023-02-09 15:57:22,482", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954642.482788, - "msecs": 482.7880859375, - "relativeCreated": 28379.030466079712, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 21.5 ()", - "asctime": "2023-02-09 15:57:22,482" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954642.4828906, - "msecs": 482.8906059265137, - "relativeCreated": 28379.132986068726, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 21.5 ()", - "asctime": "2023-02-09 15:57:22,482" - } - ], - "time_consumption": 8.96453857421875e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing valve temperature setpoint to '%.1f'", - "args": [ - 16.5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 33, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954642.7844112, - "msecs": 784.4111919403076, - "relativeCreated": 28680.65357208252, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing valve temperature setpoint to '16.5'", - "asctime": "2023-02-09 15:57:22,784", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954642.4832866, - "msecs": 483.28661918640137, - "relativeCreated": 28379.528999328613, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:22,483" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.4843807, - "msecs": 484.38072204589844, - "relativeCreated": 28380.62310218811, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 16.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:22,484" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 16.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.5041254, - "msecs": 504.12535667419434, - "relativeCreated": 28400.367736816406, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 16.5}'", - "asctime": "2023-02-09 15:57:22,504" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'16.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.5048413, - "msecs": 504.8413276672363, - "relativeCreated": 28401.08370780945, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'16.5'", - "asctime": "2023-02-09 15:57:22,504" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.505512, - "msecs": 505.511999130249, - "relativeCreated": 28401.75437927246, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:22,505" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "b'16.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.5060935, - "msecs": 506.09350204467773, - "relativeCreated": 28402.33588218689, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'16.5'", - "asctime": "2023-02-09 15:57:22,506" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.5067198, - "msecs": 506.71982765197754, - "relativeCreated": 28402.96220779419, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:22,506" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.5072892, - "msecs": 507.28917121887207, - "relativeCreated": 28403.531551361084, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:22,507" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.5079234, - "msecs": 507.9233646392822, - "relativeCreated": 28404.165744781494, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:22,507" - } - ], - "time_consumption": 0.2764878273010254 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "16.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954642.7851176, - "msecs": 785.1176261901855, - "relativeCreated": 28681.360006332397, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 16.5 and Type is ).", - "asctime": "2023-02-09 15:57:22,785", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954642.7848313, - "msecs": 784.8312854766846, - "relativeCreated": 28681.073665618896, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 16.5 ()", - "asctime": "2023-02-09 15:57:22,784" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954642.7849712, - "msecs": 784.9712371826172, - "relativeCreated": 28681.21361732483, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 16.5 ()", - "asctime": "2023-02-09 15:57:22,784" - } - ], - "time_consumption": 0.00014638900756835938 - }, - { - "name": "__tLogger__", - "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", - "args": [ - "16.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954642.785497, - "msecs": 785.4969501495361, - "relativeCreated": 28681.739330291748, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device user temperature is correct (Content 16.5 and Type is ).", - "asctime": "2023-02-09 15:57:22,785", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device user temperature", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954642.7853026, - "msecs": 785.3026390075684, - "relativeCreated": 28681.54501914978, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device user temperature): 16.5 ()", - "asctime": "2023-02-09 15:57:22,785" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device user temperature", - "=", - "16.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954642.7854056, - "msecs": 785.4056358337402, - "relativeCreated": 28681.648015975952, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device user temperature): result = 16.5 ()", - "asctime": "2023-02-09 15:57:22,785" - } - ], - "time_consumption": 9.131431579589844e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing videv user temperature setpoint to '%.1f'", - "args": [ - 21.5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 41, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954643.086796, - "msecs": 86.79604530334473, - "relativeCreated": 28983.038425445557, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing videv user temperature setpoint to '21.5'", - "asctime": "2023-02-09 15:57:23,086", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "21.5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954642.785801, - "msecs": 785.8009338378906, - "relativeCreated": 28682.043313980103, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload 21.5", - "asctime": "2023-02-09 15:57:22,785" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.7869332, - "msecs": 786.933183670044, - "relativeCreated": 28683.175563812256, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:22,786" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve/set", - "b'{\"current_heating_setpoint\": 21.5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.8065603, - "msecs": 806.5602779388428, - "relativeCreated": 28702.802658081055, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{\"current_heating_setpoint\": 21.5}'", - "asctime": "2023-02-09 15:57:22,806" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954642.8071048, - "msecs": 807.1048259735107, - "relativeCreated": 28703.347206115723, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/heating_valve and payload {\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:22,807" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/valve_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.8077335, - "msecs": 807.7335357666016, - "relativeCreated": 28703.975915908813, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/valve_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:22,807" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.808495, - "msecs": 808.495044708252, - "relativeCreated": 28704.737424850464, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:22,808" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/user_temperature_setpoint", - "b'21.5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.8091257, - "msecs": 809.1256618499756, - "relativeCreated": 28705.368041992188, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5'", - "asctime": "2023-02-09 15:57:22,809" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.8097467, - "msecs": 809.7467422485352, - "relativeCreated": 28705.989122390747, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:22,809" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/heating_valve", - "b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.8103392, - "msecs": 810.3392124176025, - "relativeCreated": 28706.581592559814, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{\"current_heating_setpoint\": 21.5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:22,810" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.8578227, - "msecs": 857.8226566314697, - "relativeCreated": 28754.06503677368, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:22,857" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954642.9019, - "msecs": 901.900053024292, - "relativeCreated": 28798.142433166504, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:22,901" - } - ], - "time_consumption": 0.18489599227905273 - }, - { - "name": "__tLogger__", - "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "21.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954643.0874717, - "msecs": 87.47172355651855, - "relativeCreated": 28983.71410369873, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve device temperature setpoint is correct (Content 21.5 and Type is ).", - "asctime": "2023-02-09 15:57:23,087", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve device temperature setpoint", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954643.0872185, - "msecs": 87.2185230255127, - "relativeCreated": 28983.460903167725, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve device temperature setpoint): 21.5 ()", - "asctime": "2023-02-09 15:57:23,087" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve device temperature setpoint", - "=", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954643.0873597, - "msecs": 87.35966682434082, - "relativeCreated": 28983.602046966553, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve device temperature setpoint): result = 21.5 ()", - "asctime": "2023-02-09 15:57:23,087" - } - ], - "time_consumption": 0.00011205673217773438 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "21.5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954643.0879169, - "msecs": 87.91685104370117, - "relativeCreated": 28984.159231185913, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 21.5 and Type is ).", - "asctime": "2023-02-09 15:57:23,087", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954643.087647, - "msecs": 87.6469612121582, - "relativeCreated": 28983.88934135437, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 21.5 ()", - "asctime": "2023-02-09 15:57:23,087" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "21.5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954643.0878074, - "msecs": 87.80741691589355, - "relativeCreated": 28984.049797058105, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 21.5 ()", - "asctime": "2023-02-09 15:57:23,087" - } - ], - "time_consumption": 0.00010943412780761719 - } - ], - "time_consumption": 1.2106008529663086, - "time_start": "2023-02-09 15:57:21,877", - "time_finished": "2023-02-09 15:57:23,087" - }, - "Brightness test for device and virtual device: zigbee/ffe/sleep/main_light": { - "name": "__tLogger__", - "msg": "Brightness test for device and virtual device: zigbee/ffe/sleep/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_brightness", - "created": 1675954643.088407, - "msecs": 88.40703964233398, - "relativeCreated": 28984.649419784546, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness test for device and virtual device: zigbee/ffe/sleep/main_light", - "asctime": "2023-02-09 15:57:23,088", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], "levelname": "DEBUG", "levelno": 10, "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", @@ -45641,23 +78139,23 @@ "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 57, - "funcName": "__test_brightness__", - "created": 1675954643.3912075, - "msecs": 391.2074565887451, - "relativeCreated": 29287.449836730957, - "thread": 139894075555840, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441671.2684326, + "msecs": 268.4326171875, + "relativeCreated": 68271.94786071777, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:23,391", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:31,268", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", + "shellies/gfw/dirk/main_light/relay/0", "on" ], "levelname": "DEBUG", @@ -45670,22 +78168,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954643.0887024, - "msecs": 88.70244026184082, - "relativeCreated": 28984.944820404053, - "thread": 139894075555840, + "created": 1676441670.966723, + "msecs": 966.7229652404785, + "relativeCreated": 67970.23820877075, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:23,088" + "process": 509276, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:30,966" }, { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" + "zigbee/gfw/dirk/main_light", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -45697,21 +78195,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954643.0893428, - "msecs": 89.34283256530762, - "relativeCreated": 28985.58521270752, - "thread": 139894075555840, + "created": 1676441670.9673722, + "msecs": 967.3721790313721, + "relativeCreated": 67970.88742256165, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:23,089" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:30,967" }, { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", + "shellies/gfw/dirk/main_light/relay/0", "b'on'" ], "levelname": "DEBUG", @@ -45724,22 +78222,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954643.090346, - "msecs": 90.34609794616699, - "relativeCreated": 28986.58847808838, - "thread": 139894051313216, + "created": 1676441670.9685833, + "msecs": 968.583345413208, + "relativeCreated": 67972.09858894348, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:23,090" + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:30,968" }, { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "zigbee/gfw/dirk/main_light", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -45751,21 +78249,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954643.0910218, - "msecs": 91.02177619934082, - "relativeCreated": 28987.264156341553, - "thread": 139894051313216, + "created": 1676441670.9698157, + "msecs": 969.815731048584, + "relativeCreated": 67973.33097457886, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:23,091" + "process": 509276, + "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:30,969" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/main_light/state", + "videv/gfw/dirk/main_light/state", "b'true'" ], "levelname": "DEBUG", @@ -45778,160 +78276,25 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954643.1417694, - "msecs": 141.7694091796875, - "relativeCreated": 29038.0117893219, - "thread": 139894051313216, + "created": 1676441671.018992, + "msecs": 18.991947174072266, + "relativeCreated": 68022.50719070435, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:23,141" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.1424642, - "msecs": 142.46416091918945, - "relativeCreated": 29038.7065410614, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:23,142" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.1430194, - "msecs": 143.019437789917, - "relativeCreated": 29039.26181793213, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:23,143" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.1437879, - "msecs": 143.78786087036133, - "relativeCreated": 29040.030241012573, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:23,143" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.1443968, - "msecs": 144.39678192138672, - "relativeCreated": 29040.6391620636, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:23,144" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.1449904, - "msecs": 144.9904441833496, - "relativeCreated": 29041.23282432556, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:23,144" + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:31,018" } ], - "time_consumption": 0.2462170124053955 + "time_consumption": 0.24944067001342773 }, { "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "msg": "Virtual device state is correct (Content %s and Type is %s).", "args": [ - "50", - "" + "True", + "" ], "levelname": "INFO", "levelno": 20, @@ -45943,23 +78306,23 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954643.39185, - "msecs": 391.8499946594238, - "relativeCreated": 29288.092374801636, - "thread": 139894075555840, + "created": 1676441671.269162, + "msecs": 269.1619396209717, + "relativeCreated": 68272.67718315125, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:23,391", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:31,269", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Virtual device brightness", - "50", - "" + "Virtual device state", + "True", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -45971,24 +78334,24 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954643.3916066, - "msecs": 391.60656929016113, - "relativeCreated": 29287.848949432373, - "thread": 139894075555840, + "created": 1676441671.2688904, + "msecs": 268.890380859375, + "relativeCreated": 68272.40562438965, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:23,391" + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:31,268" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Virtual device brightness", + "Virtual device state", "=", - "50", - "" + "True", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -46000,24 +78363,111 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954643.391743, - "msecs": 391.7429447174072, - "relativeCreated": 29287.98532485962, - "thread": 139894075555840, + "created": 1676441671.2690406, + "msecs": 269.040584564209, + "relativeCreated": 68272.55582809448, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:23,391" + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:31,269" } ], - "time_consumption": 0.00010704994201660156 + "time_consumption": 0.00012135505676269531 }, { "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", + "msg": "Switching device state is correct (Content %s and Type is %s).", "args": [ - 65 + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441671.2695744, + "msecs": 269.5744037628174, + "relativeCreated": 68273.08964729309, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:31,269", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441671.2693589, + "msecs": 269.35887336730957, + "relativeCreated": 68272.87411689758, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:31,269" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441671.2694736, + "msecs": 269.4735527038574, + "relativeCreated": 68272.98879623413, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:31,269" + } + ], + "time_consumption": 0.00010085105895996094 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false ], "levelname": "DEBUG", "levelno": 10, @@ -46027,24 +78477,24 @@ "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954643.694754, - "msecs": 694.753885269165, - "relativeCreated": 29590.996265411377, - "thread": 139894075555840, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441671.5707057, + "msecs": 570.7056522369385, + "relativeCreated": 68574.22089576721, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:23,694", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:31,570", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" + "videv/gfw/dirk/main_light/state/set", + "false" ], "levelname": "DEBUG", "levelno": 10, @@ -46056,1338 +78506,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954643.3922431, - "msecs": 392.2431468963623, - "relativeCreated": 29288.485527038574, - "thread": 139894075555840, + "created": 1676441671.269854, + "msecs": 269.8540687561035, + "relativeCreated": 68273.36931228638, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:23,392" + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:31,269" }, { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0.command", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.3938694, - "msecs": 393.86940002441406, - "relativeCreated": 29290.111780166626, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:23,393" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.396356, - "msecs": 396.35610580444336, - "relativeCreated": 29292.598485946655, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:23,396" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.3970351, - "msecs": 397.0351219177246, - "relativeCreated": 29293.277502059937, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:23,397" - } - ], - "time_consumption": 0.29771876335144043 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954643.695426, - "msecs": 695.4259872436523, - "relativeCreated": 29591.668367385864, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:23,695", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954643.6951575, - "msecs": 695.157527923584, - "relativeCreated": 29591.399908065796, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:23,695" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954643.6952906, - "msecs": 695.2905654907227, - "relativeCreated": 29591.532945632935, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:23,695" - } - ], - "time_consumption": 0.0001354217529296875 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954643.6957917, - "msecs": 695.7917213439941, - "relativeCreated": 29592.034101486206, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:23,695", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954643.6956024, - "msecs": 695.6024169921875, - "relativeCreated": 29591.8447971344, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:23,695" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954643.695701, - "msecs": 695.7008838653564, - "relativeCreated": 29591.94326400757, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:23,695" - } - ], - "time_consumption": 9.083747863769531e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954643.9980147, - "msecs": 998.0146884918213, - "relativeCreated": 29894.257068634033, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:23,998", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954643.69608, - "msecs": 696.0799694061279, - "relativeCreated": 29592.32234954834, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:23,696" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.697213, - "msecs": 697.2129344940186, - "relativeCreated": 29593.45531463623, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:23,697" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.69897, - "msecs": 698.9700794219971, - "relativeCreated": 29595.21245956421, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:23,698" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954643.6994684, - "msecs": 699.4683742523193, - "relativeCreated": 29595.71075439453, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:23,699" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.7004666, - "msecs": 700.4666328430176, - "relativeCreated": 29596.70901298523, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:23,700" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.745447, - "msecs": 745.4469203948975, - "relativeCreated": 29641.68930053711, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:23,745" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954643.746175, - "msecs": 746.1750507354736, - "relativeCreated": 29642.417430877686, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:23,746" - } - ], - "time_consumption": 0.25183963775634766 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954643.9986663, - "msecs": 998.6662864685059, - "relativeCreated": 29894.908666610718, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:23,998", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954643.9984224, - "msecs": 998.422384262085, - "relativeCreated": 29894.664764404297, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:23,998" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954643.9985578, - "msecs": 998.5578060150146, - "relativeCreated": 29894.800186157227, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:23,998" - } - ], - "time_consumption": 0.00010848045349121094 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954643.9990242, - "msecs": 999.0241527557373, - "relativeCreated": 29895.26653289795, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:23,999", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954643.9988391, - "msecs": 998.8391399383545, - "relativeCreated": 29895.081520080566, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:23,998" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954643.998937, - "msecs": 998.9368915557861, - "relativeCreated": 29895.179271697998, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:23,998" - } - ], - "time_consumption": 8.726119995117188e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954644.3013406, - "msecs": 301.34057998657227, - "relativeCreated": 30197.582960128784, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:24,301", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954643.9993582, - "msecs": 999.3581771850586, - "relativeCreated": 29895.60055732727, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:23,999" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.000472, - "msecs": 0.47206878662109375, - "relativeCreated": 29896.714448928833, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:24,000" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.0030072, - "msecs": 3.007173538208008, - "relativeCreated": 29899.24955368042, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:24,003" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.0036829, - "msecs": 3.682851791381836, - "relativeCreated": 29899.925231933594, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:24,003" - } - ], - "time_consumption": 0.29765772819519043 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954644.3020282, - "msecs": 302.0281791687012, - "relativeCreated": 30198.270559310913, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:24,302", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954644.3017445, - "msecs": 301.7444610595703, - "relativeCreated": 30197.986841201782, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:24,301" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954644.301915, - "msecs": 301.91493034362793, - "relativeCreated": 30198.15731048584, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:24,301" - } - ], - "time_consumption": 0.00011324882507324219 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954644.3023975, - "msecs": 302.3974895477295, - "relativeCreated": 30198.63986968994, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:24,302", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954644.3022048, - "msecs": 302.20484733581543, - "relativeCreated": 30198.447227478027, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:24,302" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954644.302305, - "msecs": 302.3049831390381, - "relativeCreated": 30198.54736328125, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:24,302" - } - ], - "time_consumption": 9.250640869140625e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954644.6037107, - "msecs": 603.7106513977051, - "relativeCreated": 30499.953031539917, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:24,603", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954644.3026876, - "msecs": 302.6876449584961, - "relativeCreated": 30198.930025100708, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:24,302" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.3038113, - "msecs": 303.81131172180176, - "relativeCreated": 30200.053691864014, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:24,303" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.3055112, - "msecs": 305.5112361907959, - "relativeCreated": 30201.753616333008, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:24,305" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954644.306015, - "msecs": 306.0150146484375, - "relativeCreated": 30202.25739479065, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:24,306" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.3069782, - "msecs": 306.9782257080078, - "relativeCreated": 30203.22060585022, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:24,306" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.3521504, - "msecs": 352.15044021606445, - "relativeCreated": 30248.392820358276, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:24,352" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.3531284, - "msecs": 353.12843322753906, - "relativeCreated": 30249.37081336975, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:24,353" - } - ], - "time_consumption": 0.250582218170166 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954644.6043158, - "msecs": 604.3157577514648, - "relativeCreated": 30500.558137893677, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:24,604", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954644.6040962, - "msecs": 604.0961742401123, - "relativeCreated": 30500.338554382324, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:24,604" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954644.6042185, - "msecs": 604.2184829711914, - "relativeCreated": 30500.460863113403, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:24,604" - } - ], - "time_consumption": 9.72747802734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "__test_brightness__", - "created": 1675954644.9061313, - "msecs": 906.1312675476074, - "relativeCreated": 30802.37364768982, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:24,906", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954644.6045375, - "msecs": 604.5374870300293, - "relativeCreated": 30500.77986717224, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:24,604" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0", + "shellies/gfw/dirk/main_light/relay/0/command", "b'off'" ], "levelname": "DEBUG", @@ -47400,1727 +78533,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954644.6056042, - "msecs": 605.6041717529297, - "relativeCreated": 30501.84655189514, - "thread": 139894051313216, + "created": 1676441671.2730775, + "msecs": 273.07748794555664, + "relativeCreated": 68276.59273147583, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:24,605" + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:31,273" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.6088378, - "msecs": 608.8378429412842, - "relativeCreated": 30505.080223083496, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:24,608" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.6094825, - "msecs": 609.4825267791748, - "relativeCreated": 30505.724906921387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:24,609" - } - ], - "time_consumption": 0.2966487407684326 - } - ], - "time_consumption": 1.8177242279052734, - "time_start": "2023-02-09 15:57:23,088", - "time_finished": "2023-02-09 15:57:24,906" - }, - "Color temperature test for device and virtual device: zigbee/ffe/sleep/main_light": { - "name": "__tLogger__", - "msg": "Color temperature test for device and virtual device: zigbee/ffe/sleep/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 81, - "funcName": "test_color_temp", - "created": 1675954644.9068637, - "msecs": 906.8636894226074, - "relativeCreated": 30803.10606956482, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Color temperature test for device and virtual device: zigbee/ffe/sleep/main_light", - "asctime": "2023-02-09 15:57:24,906", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 88, - "funcName": "__test_color_temp__", - "created": 1675954645.208915, - "msecs": 208.91499519348145, - "relativeCreated": 31105.157375335693, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:25,208", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954644.9071975, - "msecs": 907.1974754333496, - "relativeCreated": 30803.43985557556, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:24,907" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954644.9077904, - "msecs": 907.7904224395752, - "relativeCreated": 30804.032802581787, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:24,907" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.9088392, - "msecs": 908.839225769043, - "relativeCreated": 30805.081605911255, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:24,908" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.9096448, - "msecs": 909.6448421478271, - "relativeCreated": 30805.88722229004, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:24,909" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.9578037, - "msecs": 957.8037261962891, - "relativeCreated": 30854.0461063385, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:24,957" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954644.9585385, - "msecs": 958.5385322570801, - "relativeCreated": 30854.780912399292, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:24,958" - } - ], - "time_consumption": 0.25037646293640137 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954645.2095876, - "msecs": 209.58757400512695, - "relativeCreated": 31105.82995414734, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:25,209", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954645.209343, - "msecs": 209.34295654296875, - "relativeCreated": 31105.58533668518, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:25,209" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954645.2094796, - "msecs": 209.47957038879395, - "relativeCreated": 31105.721950531006, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:25,209" - } - ], - "time_consumption": 0.00010800361633300781 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954645.5109456, - "msecs": 510.94555854797363, - "relativeCreated": 31407.187938690186, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:25,510", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954645.2099476, - "msecs": 209.9475860595703, - "relativeCreated": 31106.189966201782, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:25,209" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.211018, - "msecs": 211.01808547973633, - "relativeCreated": 31107.26046562195, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:25,211" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.2135472, - "msecs": 213.5472297668457, - "relativeCreated": 31109.789609909058, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:25,213" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.2142274, - "msecs": 214.22743797302246, - "relativeCreated": 31110.469818115234, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:25,214" - } - ], - "time_consumption": 0.29671812057495117 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954645.5115914, - "msecs": 511.59143447875977, - "relativeCreated": 31407.83381462097, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:25,511", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954645.511349, - "msecs": 511.3489627838135, - "relativeCreated": 31407.591342926025, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:25,511" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954645.5114806, - "msecs": 511.48056983947754, - "relativeCreated": 31407.72294998169, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:25,511" - } - ], - "time_consumption": 0.00011086463928222656 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954645.5119948, - "msecs": 511.9948387145996, - "relativeCreated": 31408.23721885681, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:25,511", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954645.5118046, - "msecs": 511.80458068847656, - "relativeCreated": 31408.04696083069, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:25,511" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954645.5119042, - "msecs": 511.904239654541, - "relativeCreated": 31408.146619796753, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:25,511" - } - ], - "time_consumption": 9.059906005859375e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954645.8142292, - "msecs": 814.2292499542236, - "relativeCreated": 31710.471630096436, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:25,814", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954645.512283, - "msecs": 512.2830867767334, - "relativeCreated": 31408.525466918945, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:25,512" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.5133705, - "msecs": 513.3705139160156, - "relativeCreated": 31409.612894058228, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:25,513" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.5151036, - "msecs": 515.1035785675049, - "relativeCreated": 31411.345958709717, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:25,515" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954645.5156436, - "msecs": 515.6435966491699, - "relativeCreated": 31411.885976791382, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:25,515" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.516592, - "msecs": 516.5920257568359, - "relativeCreated": 31412.834405899048, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:25,516" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.5614796, - "msecs": 561.4795684814453, - "relativeCreated": 31457.721948623657, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:25,561" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.5622358, - "msecs": 562.2358322143555, - "relativeCreated": 31458.478212356567, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:25,562" - } - ], - "time_consumption": 0.25199341773986816 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954645.8149095, - "msecs": 814.9094581604004, - "relativeCreated": 31711.151838302612, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:25,814", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954645.814664, - "msecs": 814.6638870239258, - "relativeCreated": 31710.906267166138, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:25,814" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954645.8148015, - "msecs": 814.8014545440674, - "relativeCreated": 31711.04383468628, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:25,814" - } - ], - "time_consumption": 0.00010800361633300781 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954645.8152704, - "msecs": 815.2704238891602, - "relativeCreated": 31711.512804031372, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:25,815", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954645.8150814, - "msecs": 815.0813579559326, - "relativeCreated": 31711.323738098145, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:25,815" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954645.8151824, - "msecs": 815.1824474334717, - "relativeCreated": 31711.424827575684, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:25,815" - } - ], - "time_consumption": 8.797645568847656e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954646.1166024, - "msecs": 116.60242080688477, - "relativeCreated": 32012.844800949097, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:26,116", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954645.8156366, - "msecs": 815.6366348266602, - "relativeCreated": 31711.879014968872, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:25,815" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.8167238, - "msecs": 816.7238235473633, - "relativeCreated": 31712.966203689575, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:25,816" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.8193116, - "msecs": 819.3116188049316, - "relativeCreated": 31715.553998947144, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:25,819" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954645.8199925, - "msecs": 819.9925422668457, - "relativeCreated": 31716.234922409058, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:25,819" - } - ], - "time_consumption": 0.29660987854003906 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954646.1169121, - "msecs": 116.9121265411377, - "relativeCreated": 32013.15450668335, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:26,116", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954646.1168158, - "msecs": 116.81580543518066, - "relativeCreated": 32013.058185577393, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:26,116" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954646.1168709, - "msecs": 116.87088012695312, - "relativeCreated": 32013.113260269165, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:26,116" - } - ], - "time_consumption": 4.124641418457031e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954646.1170669, - "msecs": 117.06686019897461, - "relativeCreated": 32013.309240341187, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:26,117", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954646.1169794, - "msecs": 116.97936058044434, - "relativeCreated": 32013.221740722656, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:26,116" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954646.1170166, - "msecs": 117.01655387878418, - "relativeCreated": 32013.258934020996, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:26,117" - } - ], - "time_consumption": 5.030632019042969e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954646.4189281, - "msecs": 418.9281463623047, - "relativeCreated": 32315.170526504517, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:26,418", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954646.117199, - "msecs": 117.19894409179688, - "relativeCreated": 32013.44132423401, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:26,117" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954646.1177537, - "msecs": 117.75374412536621, - "relativeCreated": 32013.996124267578, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:26,117" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954646.118494, - "msecs": 118.49403381347656, - "relativeCreated": 32014.73641395569, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:26,118" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954646.1187031, - "msecs": 118.70312690734863, - "relativeCreated": 32014.94550704956, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:26,118" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954646.119097, - "msecs": 119.09699440002441, - "relativeCreated": 32015.339374542236, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:26,119" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954646.1631057, - "msecs": 163.10572624206543, - "relativeCreated": 32059.348106384277, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:26,163" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954646.1634955, - "msecs": 163.49554061889648, - "relativeCreated": 32059.73792076111, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:26,163" - } - ], - "time_consumption": 0.2554326057434082 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954646.4195085, - "msecs": 419.5084571838379, - "relativeCreated": 32315.75083732605, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:26,419", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954646.4192944, - "msecs": 419.2943572998047, - "relativeCreated": 32315.536737442017, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:26,419" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954646.419413, - "msecs": 419.41308975219727, - "relativeCreated": 32315.65546989441, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:26,419" - } - ], - "time_consumption": 9.5367431640625e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 105, - "funcName": "__test_color_temp__", - "created": 1675954646.7216809, - "msecs": 721.6808795928955, - "relativeCreated": 32617.923259735107, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:26,721", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0", + "shellies/gfw/dirk/main_light/relay/0", "off" ], "levelname": "DEBUG", @@ -49133,21 +78560,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954646.41976, - "msecs": 419.75998878479004, - "relativeCreated": 32316.002368927002, - "thread": 139894075555840, - "threadName": "MainThread", + "created": 1676441671.2736826, + "msecs": 273.6825942993164, + "relativeCreated": 68277.19783782959, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:26,419" + "process": 509276, + "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:31,273" }, { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", + "shellies/gfw/dirk/main_light/relay/0", "b'off'" ], "levelname": "DEBUG", @@ -49160,21 +78587,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954646.4207852, - "msecs": 420.78518867492676, - "relativeCreated": 32317.02756881714, - "thread": 139894051313216, + "created": 1676441671.275172, + "msecs": 275.17199516296387, + "relativeCreated": 68278.68723869324, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:26,420" + "process": 509276, + "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:31,275" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/main_light/state", + "videv/gfw/dirk/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -49187,54 +78614,114 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954646.424025, - "msecs": 424.0250587463379, - "relativeCreated": 32320.26743888855, - "thread": 139894051313216, + "created": 1676441671.3596816, + "msecs": 359.6816062927246, + "relativeCreated": 68363.196849823, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:26,424" - }, + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:31,359" + } + ], + "time_consumption": 0.21102404594421387 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441671.571336, + "msecs": 571.336030960083, + "relativeCreated": 68574.85127449036, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:31,571", + "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "Switching device state", + "False", + "" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954646.4246123, - "msecs": 424.61228370666504, - "relativeCreated": 32320.854663848877, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441671.5711, + "msecs": 571.0999965667725, + "relativeCreated": 68574.61524009705, + "thread": 140246908178432, + "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:26,424" + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:31,571" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441671.5712302, + "msecs": 571.2301731109619, + "relativeCreated": 68574.74541664124, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:31,571" } ], - "time_consumption": 0.29706859588623047 + "time_consumption": 0.00010585784912109375 } ], - "time_consumption": 1.814817190170288, - "time_start": "2023-02-09 15:57:24,906", - "time_finished": "2023-02-09 15:57:26,721" + "time_consumption": 1.2107782363891602, + "time_start": "2023-02-15 07:14:30,360", + "time_finished": "2023-02-15 07:14:31,571" }, - "Power On/ Off test for device and virtual device: shellies/ffe/sleep/main_light": { + "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/4": { "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: shellies/ffe/sleep/main_light", + "msg": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/4", "args": null, "levelname": "INFO", "levelno": 20, @@ -49246,15 +78733,15 @@ "stack_info": null, "lineno": 27, "funcName": "test_power_on_off", - "created": 1675954646.7223394, - "msecs": 722.339391708374, - "relativeCreated": 32618.581771850586, - "thread": 139894075555840, + "created": 1676441671.5718248, + "msecs": 571.8247890472412, + "relativeCreated": 68575.34003257751, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: shellies/ffe/sleep/main_light", - "asctime": "2023-02-09 15:57:26,722", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/4", + "asctime": "2023-02-15 07:14:31,571", "moduleLogger": [], "testcaseLogger": [ { @@ -49274,15 +78761,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954646.7227738, - "msecs": 722.7737903594971, - "relativeCreated": 32619.01617050171, - "thread": 139894075555840, + "created": 1676441671.572235, + "msecs": 572.235107421875, + "relativeCreated": 68575.75035095215, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:26,722", + "asctime": "2023-02-15 07:14:31,572", "moduleLogger": [ { "name": "__unittest__", @@ -49302,15 +78789,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954646.7225652, - "msecs": 722.5651741027832, - "relativeCreated": 32618.807554244995, - "thread": 139894075555840, + "created": 1676441671.5720289, + "msecs": 572.0288753509521, + "relativeCreated": 68575.54411888123, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:26,722" + "asctime": "2023-02-15 07:14:31,572" }, { "name": "__unittest__", @@ -49331,18 +78818,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954646.7226796, - "msecs": 722.679615020752, - "relativeCreated": 32618.921995162964, - "thread": 139894075555840, + "created": 1676441671.5721369, + "msecs": 572.1368789672852, + "relativeCreated": 68575.65212249756, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:26,722" + "asctime": "2023-02-15 07:14:31,572" } ], - "time_consumption": 9.417533874511719e-05 + "time_consumption": 9.822845458984375e-05 }, { "name": "__tLogger__", @@ -49360,22 +78847,22 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954647.0253177, - "msecs": 25.317668914794922, - "relativeCreated": 32921.56004905701, - "thread": 139894075555840, + "created": 1676441671.8736017, + "msecs": 873.6016750335693, + "relativeCreated": 68877.11691856384, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:27,025", + "asctime": "2023-02-15 07:14:31,873", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "on" + "my_apps/gfw/dirk/powerplug/output/4", + "true" ], "levelname": "DEBUG", "levelno": 10, @@ -49387,102 +78874,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954646.7229834, - "msecs": 722.9833602905273, - "relativeCreated": 32619.22574043274, - "thread": 139894075555840, + "created": 1676441671.572503, + "msecs": 572.5030899047852, + "relativeCreated": 68576.01833343506, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:26,722" + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", + "asctime": "2023-02-15 07:14:31,572" }, { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954646.723503, - "msecs": 723.5031127929688, - "relativeCreated": 32619.74549293518, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:26,723" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954646.7243721, - "msecs": 724.372148513794, - "relativeCreated": 32620.614528656006, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:26,724" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954646.7249806, - "msecs": 724.9805927276611, - "relativeCreated": 32621.222972869873, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:26,724" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/state", + "my_apps/gfw/dirk/powerplug/output/4", "b'true'" ], "levelname": "DEBUG", @@ -49495,22 +78901,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954646.7697663, - "msecs": 769.7663307189941, - "relativeCreated": 32666.008710861206, - "thread": 139894051313216, + "created": 1676441671.5736253, + "msecs": 573.6253261566162, + "relativeCreated": 68577.14056968689, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:26,769" + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", + "asctime": "2023-02-15 07:14:31,573" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", + "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "videv/gfw/dirk/pc_dock/state", + "b'true'" ], "levelname": "DEBUG", "levelno": 10, @@ -49522,18 +78928,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954646.7704403, - "msecs": 770.4403400421143, - "relativeCreated": 32666.682720184326, - "thread": 139894051313216, + "created": 1676441671.5758154, + "msecs": 575.8154392242432, + "relativeCreated": 68579.33068275452, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:26,770" + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true'", + "asctime": "2023-02-15 07:14:31,575" } ], - "time_consumption": 0.25487732887268066 + "time_consumption": 0.29778623580932617 }, { "name": "__tLogger__", @@ -49552,15 +78958,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954647.0258963, - "msecs": 25.896310806274414, - "relativeCreated": 32922.138690948486, - "thread": 139894075555840, + "created": 1676441671.8743994, + "msecs": 874.3994235992432, + "relativeCreated": 68877.91466712952, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:27,025", + "asctime": "2023-02-15 07:14:31,874", "moduleLogger": [ { "name": "__unittest__", @@ -49580,15 +78986,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954647.025683, - "msecs": 25.682926177978516, - "relativeCreated": 32921.92530632019, - "thread": 139894075555840, + "created": 1676441671.874095, + "msecs": 874.0949630737305, + "relativeCreated": 68877.610206604, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:27,025" + "asctime": "2023-02-15 07:14:31,874" }, { "name": "__unittest__", @@ -49609,18 +79015,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954647.0258007, - "msecs": 25.800704956054688, - "relativeCreated": 32922.04308509827, - "thread": 139894075555840, + "created": 1676441671.8742635, + "msecs": 874.2635250091553, + "relativeCreated": 68877.77876853943, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:27,025" + "asctime": "2023-02-15 07:14:31,874" } ], - "time_consumption": 9.560585021972656e-05 + "time_consumption": 0.00013589859008789062 }, { "name": "__tLogger__", @@ -49639,15 +79045,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954647.0262525, - "msecs": 26.25250816345215, - "relativeCreated": 32922.494888305664, - "thread": 139894075555840, + "created": 1676441671.8749337, + "msecs": 874.9337196350098, + "relativeCreated": 68878.44896316528, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:27,026", + "asctime": "2023-02-15 07:14:31,874", "moduleLogger": [ { "name": "__unittest__", @@ -49667,15 +79073,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954647.0260499, - "msecs": 26.04985237121582, - "relativeCreated": 32922.29223251343, - "thread": 139894075555840, + "created": 1676441671.8746872, + "msecs": 874.6871948242188, + "relativeCreated": 68878.20243835449, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:27,026" + "asctime": "2023-02-15 07:14:31,874" }, { "name": "__unittest__", @@ -49696,18 +79102,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954647.0261369, - "msecs": 26.13687515258789, - "relativeCreated": 32922.3792552948, - "thread": 139894075555840, + "created": 1676441671.8748171, + "msecs": 874.8171329498291, + "relativeCreated": 68878.3323764801, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:27,026" + "asctime": "2023-02-15 07:14:31,874" } ], - "time_consumption": 0.00011563301086425781 + "time_consumption": 0.00011658668518066406 }, { "name": "__tLogger__", @@ -49725,21 +79131,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954647.3283932, - "msecs": 328.39322090148926, - "relativeCreated": 33224.6356010437, - "thread": 139894075555840, + "created": 1676441672.1764765, + "msecs": 176.47647857666016, + "relativeCreated": 69179.99172210693, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:27,328", + "asctime": "2023-02-15 07:14:32,176", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/main_light/state", + "videv/gfw/dirk/pc_dock/state/set", "false" ], "levelname": "DEBUG", @@ -49752,21 +79158,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954647.026503, - "msecs": 26.50308609008789, - "relativeCreated": 32922.7454662323, - "thread": 139894075555840, + "created": 1676441671.8753054, + "msecs": 875.3054141998291, + "relativeCreated": 68878.8206577301, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/main_light/state and payload false", - "asctime": "2023-02-09 15:57:27,026" + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false", + "asctime": "2023-02-15 07:14:31,875" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/main_light/state", + "my_apps/gfw/dirk/powerplug/output/4/set", "b'false'" ], "levelname": "DEBUG", @@ -49779,49 +79185,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954647.027484, - "msecs": 27.48394012451172, - "relativeCreated": 32923.72632026672, - "thread": 139894051313216, + "created": 1676441671.8791049, + "msecs": 879.1048526763916, + "relativeCreated": 68882.62009620667, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:27,027" + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4/set and payload b'false'", + "asctime": "2023-02-15 07:14:31,879" }, { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.0289629, - "msecs": 28.96285057067871, - "relativeCreated": 32925.20523071289, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:27,028" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "off" + "my_apps/gfw/dirk/powerplug/output/4", + "false" ], "levelname": "DEBUG", "levelno": 10, @@ -49833,48 +79212,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954647.0294044, - "msecs": 29.404401779174805, - "relativeCreated": 32925.64678192139, - "thread": 139894051313216, + "created": 1676441671.879753, + "msecs": 879.7531127929688, + "relativeCreated": 68883.26835632324, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:27,029" + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", + "asctime": "2023-02-15 07:14:31,879" }, { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.0303116, - "msecs": 30.31158447265625, - "relativeCreated": 32926.55396461487, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:27,030" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/state", + "my_apps/gfw/dirk/powerplug/output/4", "b'false'" ], "levelname": "DEBUG", @@ -49887,22 +79239,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954647.1139574, - "msecs": 113.95740509033203, - "relativeCreated": 33010.199785232544, - "thread": 139894051313216, + "created": 1676441671.8811026, + "msecs": 881.1025619506836, + "relativeCreated": 68884.61780548096, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:27,113" + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", + "asctime": "2023-02-15 07:14:31,881" }, { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", + "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "videv/gfw/dirk/pc_dock/state", + "b'false'" ], "levelname": "DEBUG", "levelno": 10, @@ -49914,18 +79266,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954647.114606, - "msecs": 114.60590362548828, - "relativeCreated": 33010.8482837677, - "thread": 139894051313216, + "created": 1676441671.9258678, + "msecs": 925.8677959442139, + "relativeCreated": 68929.38303947449, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:27,114" + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", + "asctime": "2023-02-15 07:14:31,925" } ], - "time_consumption": 0.21378731727600098 + "time_consumption": 0.2506086826324463 }, { "name": "__tLogger__", @@ -49944,15 +79296,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954647.3289728, - "msecs": 328.97281646728516, - "relativeCreated": 33225.2151966095, - "thread": 139894075555840, + "created": 1676441672.1772087, + "msecs": 177.20866203308105, + "relativeCreated": 69180.72390556335, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:27,328", + "asctime": "2023-02-15 07:14:32,177", "moduleLogger": [ { "name": "__unittest__", @@ -49972,15 +79324,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954647.3287575, - "msecs": 328.75752449035645, - "relativeCreated": 33224.99990463257, - "thread": 139894075555840, + "created": 1676441672.1769302, + "msecs": 176.93018913269043, + "relativeCreated": 69180.44543266296, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:27,328" + "asctime": "2023-02-15 07:14:32,176" }, { "name": "__unittest__", @@ -50001,18 +79353,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954647.3288782, - "msecs": 328.87816429138184, - "relativeCreated": 33225.120544433594, - "thread": 139894075555840, + "created": 1676441672.1770835, + "msecs": 177.08349227905273, + "relativeCreated": 69180.59873580933, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:27,328" + "asctime": "2023-02-15 07:14:32,177" } ], - "time_consumption": 9.465217590332031e-05 + "time_consumption": 0.0001251697540283203 }, { "name": "__tLogger__", @@ -50031,15 +79383,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954647.3293383, - "msecs": 329.33831214904785, - "relativeCreated": 33225.58069229126, - "thread": 139894075555840, + "created": 1676441672.177664, + "msecs": 177.66404151916504, + "relativeCreated": 69181.17928504944, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:27,329", + "asctime": "2023-02-15 07:14:32,177", "moduleLogger": [ { "name": "__unittest__", @@ -50059,15 +79411,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954647.3291664, - "msecs": 329.1664123535156, - "relativeCreated": 33225.40879249573, - "thread": 139894075555840, + "created": 1676441672.1774049, + "msecs": 177.40488052368164, + "relativeCreated": 69180.92012405396, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:27,329" + "asctime": "2023-02-15 07:14:32,177" }, { "name": "__unittest__", @@ -50088,8801 +79440,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954647.3292582, - "msecs": 329.2582035064697, - "relativeCreated": 33225.50058364868, - "thread": 139894075555840, + "created": 1676441672.177521, + "msecs": 177.5209903717041, + "relativeCreated": 69181.03623390198, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:27,329" - } - ], - "time_consumption": 8.0108642578125e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954647.6319342, - "msecs": 631.9341659545898, - "relativeCreated": 33528.1765460968, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:27,631", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954647.3295472, - "msecs": 329.5471668243408, - "relativeCreated": 33225.78954696655, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:27,329" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954647.3300807, - "msecs": 330.0807476043701, - "relativeCreated": 33226.32312774658, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffe/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:27,330" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.3309064, - "msecs": 330.9063911437988, - "relativeCreated": 33227.14877128601, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:27,330" - }, - { - "name": "smart_brain.mqtt.zigbee.ffe.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffe/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.3314943, - "msecs": 331.4943313598633, - "relativeCreated": 33227.736711502075, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffe/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:27,331" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.3789184, - "msecs": 378.9184093475342, - "relativeCreated": 33275.160789489746, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:27,378" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.3796496, - "msecs": 379.6496391296387, - "relativeCreated": 33275.89201927185, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:27,379" - } - ], - "time_consumption": 0.25228452682495117 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954647.6325836, - "msecs": 632.5836181640625, - "relativeCreated": 33528.825998306274, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:27,632", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954647.632339, - "msecs": 632.3390007019043, - "relativeCreated": 33528.581380844116, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:27,632" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954647.6324756, - "msecs": 632.4756145477295, - "relativeCreated": 33528.71799468994, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:27,632" - } - ], - "time_consumption": 0.00010800361633300781 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954647.6329749, - "msecs": 632.9748630523682, - "relativeCreated": 33529.21724319458, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:27,632", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954647.6327553, - "msecs": 632.7552795410156, - "relativeCreated": 33528.99765968323, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:27,632" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954647.6328573, - "msecs": 632.8573226928711, - "relativeCreated": 33529.09970283508, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:27,632" - } - ], - "time_consumption": 0.00011754035949707031 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954647.934178, - "msecs": 934.1781139373779, - "relativeCreated": 33830.42049407959, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:27,934", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954647.6333082, - "msecs": 633.3081722259521, - "relativeCreated": 33529.550552368164, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffe/sleep/main_light/state and payload false", - "asctime": "2023-02-09 15:57:27,633" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.6343858, - "msecs": 634.3858242034912, - "relativeCreated": 33530.6282043457, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:27,634" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.635985, - "msecs": 635.9848976135254, - "relativeCreated": 33532.22727775574, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:27,635" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954647.6364462, - "msecs": 636.4462375640869, - "relativeCreated": 33532.6886177063, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffe/sleep/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:27,636" - }, - { - "name": "smart_brain.mqtt.shellies.ffe.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffe/sleep/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.6374688, - "msecs": 637.4688148498535, - "relativeCreated": 33533.711194992065, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffe/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:27,637" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.7257798, - "msecs": 725.7797718048096, - "relativeCreated": 33622.02215194702, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:27,725" - }, - { - "name": "smart_brain.mqtt.videv.ffe.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.726474, - "msecs": 726.4740467071533, - "relativeCreated": 33622.716426849365, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:27,726" - } - ], - "time_consumption": 0.2077040672302246 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954647.9348342, - "msecs": 934.8342418670654, - "relativeCreated": 33831.07662200928, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:27,934", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954647.9345877, - "msecs": 934.5877170562744, - "relativeCreated": 33830.830097198486, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:27,934" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954647.9347255, - "msecs": 934.7255229949951, - "relativeCreated": 33830.96790313721, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:27,934" - } - ], - "time_consumption": 0.0001087188720703125 - } - ], - "time_consumption": 1.2124948501586914, - "time_start": "2023-02-09 15:57:26,722", - "time_finished": "2023-02-09 15:57:27,934" - }, - "Away mode test: zigbee/ffw/bath/heating_valve": { - "name": "__tLogger__", - "msg": "Away mode test: zigbee/ffw/bath/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 101, - "funcName": "test_away_mode", - "created": 1675954647.9353635, - "msecs": 935.3635311126709, - "relativeCreated": 33831.60591125488, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode test: zigbee/ffw/bath/heating_valve", - "asctime": "2023-02-09 15:57:27,935", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 106, - "funcName": "__test_away_mode__", - "created": 1675954648.2376442, - "msecs": 237.64419555664062, - "relativeCreated": 34133.88657569885, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:28,237", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954647.9357123, - "msecs": 935.7123374938965, - "relativeCreated": 33831.95471763611, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:27,935" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.9368057, - "msecs": 936.8057250976562, - "relativeCreated": 33833.04810523987, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:27,936" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.9538946, - "msecs": 953.8946151733398, - "relativeCreated": 33850.13699531555, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:27,953" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.9542446, - "msecs": 954.2446136474609, - "relativeCreated": 33850.48699378967, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:27,954" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.9545193, - "msecs": 954.5192718505859, - "relativeCreated": 33850.7616519928, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:57:27,954" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954647.9546993, - "msecs": 954.6992778778076, - "relativeCreated": 33850.94165802002, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:27,954" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.9552467, - "msecs": 955.2466869354248, - "relativeCreated": 33851.48906707764, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:27,955" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.9555569, - "msecs": 955.5568695068359, - "relativeCreated": 33851.79924964905, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:27,955" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954647.9557903, - "msecs": 955.7902812957764, - "relativeCreated": 33852.03266143799, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:27,955" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.0045984, - "msecs": 4.598379135131836, - "relativeCreated": 33900.840759277344, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:28,004" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.0461576, - "msecs": 46.1575984954834, - "relativeCreated": 33942.399978637695, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:28,046" - } - ], - "time_consumption": 0.19148659706115723 - }, - { - "name": "__tLogger__", - "msg": "Away mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954648.2383237, - "msecs": 238.32368850708008, - "relativeCreated": 34134.56606864929, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:28,238", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Away mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954648.2380395, - "msecs": 238.03949356079102, - "relativeCreated": 34134.281873703, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Away mode): False ()", - "asctime": "2023-02-09 15:57:28,238" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Away mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954648.2381752, - "msecs": 238.1751537322998, - "relativeCreated": 34134.41753387451, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Away mode): result = False ()", - "asctime": "2023-02-09 15:57:28,238" - } - ], - "time_consumption": 0.00014853477478027344 - }, - { - "name": "__tLogger__", - "msg": "Activating away mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 113, - "funcName": "__test_away_mode__", - "created": 1675954648.5405786, - "msecs": 540.5786037445068, - "relativeCreated": 34436.82098388672, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Activating away mode", - "asctime": "2023-02-09 15:57:28,540", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/away_mode", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954648.238664, - "msecs": 238.663911819458, - "relativeCreated": 34134.90629196167, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/away_mode and payload true", - "asctime": "2023-02-09 15:57:28,238" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/away_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.239775, - "msecs": 239.7749423980713, - "relativeCreated": 34136.01732254028, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'true'", - "asctime": "2023-02-09 15:57:28,239" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 18}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.2557106, - "msecs": 255.71060180664062, - "relativeCreated": 34151.95298194885, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", - "asctime": "2023-02-09 15:57:28,255" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954648.2561686, - "msecs": 256.1686038970947, - "relativeCreated": 34152.41098403931, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:28,256" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.2567182, - "msecs": 256.7181587219238, - "relativeCreated": 34152.960538864136, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:57:28,256" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.2574325, - "msecs": 257.4324607849121, - "relativeCreated": 34153.674840927124, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:28,257" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/away_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.2579536, - "msecs": 257.9536437988281, - "relativeCreated": 34154.19602394104, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'true'", - "asctime": "2023-02-09 15:57:28,257" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.2584615, - "msecs": 258.46147537231445, - "relativeCreated": 34154.70385551453, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:28,258" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.2589648, - "msecs": 258.96477699279785, - "relativeCreated": 34155.20715713501, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:28,258" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.3020513, - "msecs": 302.051305770874, - "relativeCreated": 34198.293685913086, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:28,302" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.3459764, - "msecs": 345.9763526916504, - "relativeCreated": 34242.21873283386, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:28,345" - } - ], - "time_consumption": 0.19460225105285645 - }, - { - "name": "__tLogger__", - "msg": "Away mode is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954648.5411928, - "msecs": 541.1927700042725, - "relativeCreated": 34437.435150146484, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:28,541", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Away mode", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954648.5409288, - "msecs": 540.928840637207, - "relativeCreated": 34437.17122077942, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Away mode): True ()", - "asctime": "2023-02-09 15:57:28,540" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Away mode", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954648.541089, - "msecs": 541.0890579223633, - "relativeCreated": 34437.331438064575, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Away mode): result = True ()", - "asctime": "2023-02-09 15:57:28,541" - } - ], - "time_consumption": 0.00010371208190917969 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954648.5415215, - "msecs": 541.5215492248535, - "relativeCreated": 34437.763929367065, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:57:28,541", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954648.5413496, - "msecs": 541.3496494293213, - "relativeCreated": 34437.59202957153, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 18 ()", - "asctime": "2023-02-09 15:57:28,541" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954648.54144, - "msecs": 541.4400100708008, - "relativeCreated": 34437.68239021301, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 18 ()", - "asctime": "2023-02-09 15:57:28,541" - } - ], - "time_consumption": 8.153915405273438e-05 - }, - { - "name": "__tLogger__", - "msg": "Deactivating away mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 119, - "funcName": "__test_away_mode__", - "created": 1675954648.8436937, - "msecs": 843.693733215332, - "relativeCreated": 34739.936113357544, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Deactivating away mode", - "asctime": "2023-02-09 15:57:28,843", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/away_mode", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954648.54181, - "msecs": 541.8100357055664, - "relativeCreated": 34438.05241584778, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/away_mode and payload false", - "asctime": "2023-02-09 15:57:28,541" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/away_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.542807, - "msecs": 542.8071022033691, - "relativeCreated": 34439.04948234558, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'false'", - "asctime": "2023-02-09 15:57:28,542" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.5538158, - "msecs": 553.8158416748047, - "relativeCreated": 34450.05822181702, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:57:28,553" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954648.5542014, - "msecs": 554.2013645172119, - "relativeCreated": 34450.443744659424, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:28,554" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.5547323, - "msecs": 554.7323226928711, - "relativeCreated": 34450.97470283508, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:28,554" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.5554142, - "msecs": 555.4141998291016, - "relativeCreated": 34451.65657997131, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:28,555" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/away_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.5559297, - "msecs": 555.9296607971191, - "relativeCreated": 34452.17204093933, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'false'", - "asctime": "2023-02-09 15:57:28,555" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.5564291, - "msecs": 556.4291477203369, - "relativeCreated": 34452.67152786255, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:28,556" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.5569353, - "msecs": 556.9353103637695, - "relativeCreated": 34453.17769050598, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:28,556" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.6053102, - "msecs": 605.3102016448975, - "relativeCreated": 34501.55258178711, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:28,605" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.6469622, - "msecs": 646.9621658325195, - "relativeCreated": 34543.20454597473, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:28,646" - } - ], - "time_consumption": 0.1967315673828125 - }, - { - "name": "__tLogger__", - "msg": "Away mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954648.8442595, - "msecs": 844.25950050354, - "relativeCreated": 34740.50188064575, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:28,844", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Away mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954648.8440433, - "msecs": 844.0432548522949, - "relativeCreated": 34740.28563499451, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Away mode): False ()", - "asctime": "2023-02-09 15:57:28,844" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Away mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954648.8441634, - "msecs": 844.1634178161621, - "relativeCreated": 34740.405797958374, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Away mode): result = False ()", - "asctime": "2023-02-09 15:57:28,844" - } - ], - "time_consumption": 9.608268737792969e-05 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954648.8446114, - "msecs": 844.611406326294, - "relativeCreated": 34740.853786468506, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:57:28,844", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954648.8444102, - "msecs": 844.4101810455322, - "relativeCreated": 34740.652561187744, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:57:28,844" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954648.844498, - "msecs": 844.4979190826416, - "relativeCreated": 34740.74029922485, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:57:28,844" - } - ], - "time_consumption": 0.00011348724365234375 - } - ], - "time_consumption": 0.909247875213623, - "time_start": "2023-02-09 15:57:27,935", - "time_finished": "2023-02-09 15:57:28,844" - }, - "Boost mode test: zigbee/ffw/bath/heating_valve": { - "name": "__tLogger__", - "msg": "Boost mode test: zigbee/ffw/bath/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 128, - "funcName": "test_boost_mode", - "created": 1675954648.845038, - "msecs": 845.0379371643066, - "relativeCreated": 34741.28031730652, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost mode test: zigbee/ffw/bath/heating_valve", - "asctime": "2023-02-09 15:57:28,845", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 133, - "funcName": "__test_boost_mode__", - "created": 1675954649.1471891, - "msecs": 147.18914031982422, - "relativeCreated": 35043.431520462036, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:29,147", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954648.8453233, - "msecs": 845.3233242034912, - "relativeCreated": 34741.5657043457, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:28,845" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954648.8462958, - "msecs": 846.2958335876465, - "relativeCreated": 34742.53821372986, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:28,846" - } - ], - "time_consumption": 0.30089330673217773 - }, - { - "name": "__tLogger__", - "msg": "Boost timer is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954649.1477528, - "msecs": 147.7527618408203, - "relativeCreated": 35043.99514198303, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost timer is correct (Content 0 and Type is ).", - "asctime": "2023-02-09 15:57:29,147", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Boost timer", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954649.147536, - "msecs": 147.536039352417, - "relativeCreated": 35043.77841949463, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Boost timer): 0 ()", - "asctime": "2023-02-09 15:57:29,147" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Boost timer", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954649.1476583, - "msecs": 147.6583480834961, - "relativeCreated": 35043.90072822571, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Boost timer): result = 0 ()", - "asctime": "2023-02-09 15:57:29,147" - } - ], - "time_consumption": 9.441375732421875e-05 - }, - { - "name": "__tLogger__", - "msg": "Activating boost mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 140, - "funcName": "__test_boost_mode__", - "created": 1675954649.449186, - "msecs": 449.1860866546631, - "relativeCreated": 35345.428466796875, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Activating boost mode", - "asctime": "2023-02-09 15:57:29,449", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.start_boost", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/start_boost", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954649.1480267, - "msecs": 148.026704788208, - "relativeCreated": 35044.26908493042, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/start_boost and payload true", - "asctime": "2023-02-09 15:57:29,148" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.start_boost", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/start_boost", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.1490011, - "msecs": 149.0011215209961, - "relativeCreated": 35045.24350166321, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/start_boost and payload b'true'", - "asctime": "2023-02-09 15:57:29,149" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.boost_timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/boost_timer", - "b'900'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.1605988, - "msecs": 160.5987548828125, - "relativeCreated": 35056.841135025024, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/boost_timer and payload b'900'", - "asctime": "2023-02-09 15:57:29,160" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.1612349, - "msecs": 161.23485565185547, - "relativeCreated": 35057.47723579407, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:29,161" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 30}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.161791, - "msecs": 161.7910861968994, - "relativeCreated": 35058.03346633911, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", - "asctime": "2023-02-09 15:57:29,161" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954649.1621306, - "msecs": 162.13059425354004, - "relativeCreated": 35058.37297439575, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:29,162" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'30'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.1626747, - "msecs": 162.6746654510498, - "relativeCreated": 35058.91704559326, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'30'", - "asctime": "2023-02-09 15:57:29,162" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.163327, - "msecs": 163.32697868347168, - "relativeCreated": 35059.56935882568, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:29,163" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.1638439, - "msecs": 163.84387016296387, - "relativeCreated": 35060.086250305176, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:29,163" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.2055914, - "msecs": 205.59144020080566, - "relativeCreated": 35101.83382034302, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:29,205" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.2470448, - "msecs": 247.04480171203613, - "relativeCreated": 35143.28718185425, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:29,247" - } - ], - "time_consumption": 0.20214128494262695 - }, - { - "name": "__tLogger__", - "msg": "Boost timer is greater expectation (Content %s and Type is %s).", - "args": [ - "900", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 230, - "funcName": "greater_chk", - "created": 1675954649.4498596, - "msecs": 449.859619140625, - "relativeCreated": 35346.10199928284, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost timer is greater expectation (Content 900 and Type is ).", - "asctime": "2023-02-09 15:57:29,449", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Boost timer", - "900", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954649.4496126, - "msecs": 449.6126174926758, - "relativeCreated": 35345.85499763489, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Boost timer): 900 ()", - "asctime": "2023-02-09 15:57:29,449" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Boost timer", - ">", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954649.4497526, - "msecs": 449.7525691986084, - "relativeCreated": 35345.99494934082, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Boost timer): result > 0 ()", - "asctime": "2023-02-09 15:57:29,449" - } - ], - "time_consumption": 0.00010704994201660156 - }, - { - "name": "__tLogger__", - "msg": "Setting postconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 145, - "funcName": "__test_boost_mode__", - "created": 1675954649.7520902, - "msecs": 752.0902156829834, - "relativeCreated": 35648.332595825195, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting postconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:29,752", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954649.4501505, - "msecs": 450.1504898071289, - "relativeCreated": 35346.39286994934, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:29,450" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.451272, - "msecs": 451.27201080322266, - "relativeCreated": 35347.514390945435, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:29,451" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.boost_timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/boost_timer", - "b'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.4666438, - "msecs": 466.6438102722168, - "relativeCreated": 35362.88619041443, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/boost_timer and payload b'0'", - "asctime": "2023-02-09 15:57:29,466" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.4675233, - "msecs": 467.52333641052246, - "relativeCreated": 35363.765716552734, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:29,467" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.4683151, - "msecs": 468.31512451171875, - "relativeCreated": 35364.55750465393, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:57:29,468" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954649.468728, - "msecs": 468.72806549072266, - "relativeCreated": 35364.970445632935, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:29,468" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.4693704, - "msecs": 469.37036514282227, - "relativeCreated": 35365.612745285034, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:29,469" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.4701216, - "msecs": 470.1216220855713, - "relativeCreated": 35366.36400222778, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:29,470" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.4707088, - "msecs": 470.70884704589844, - "relativeCreated": 35366.95122718811, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:29,470" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.520823, - "msecs": 520.8230018615723, - "relativeCreated": 35417.065382003784, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:29,520" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.5621154, - "msecs": 562.1154308319092, - "relativeCreated": 35458.35781097412, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:29,562" - } - ], - "time_consumption": 0.18997478485107422 - }, - { - "name": "__tLogger__", - "msg": "Boost timer is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954649.7527258, - "msecs": 752.7258396148682, - "relativeCreated": 35648.96821975708, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost timer is correct (Content 0 and Type is ).", - "asctime": "2023-02-09 15:57:29,752", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Boost timer", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954649.752484, - "msecs": 752.4840831756592, - "relativeCreated": 35648.72646331787, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Boost timer): 0 ()", - "asctime": "2023-02-09 15:57:29,752" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Boost timer", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954649.7526174, - "msecs": 752.617359161377, - "relativeCreated": 35648.85973930359, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Boost timer): result = 0 ()", - "asctime": "2023-02-09 15:57:29,752" - } - ], - "time_consumption": 0.00010848045349121094 - } - ], - "time_consumption": 0.9076879024505615, - "time_start": "2023-02-09 15:57:28,845", - "time_finished": "2023-02-09 15:57:29,752" - }, - "Default temperature test for device and virtual device: zigbee/ffw/bath/heating_valve": { - "name": "__tLogger__", - "msg": "Default temperature test for device and virtual device: zigbee/ffw/bath/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_default_temperature", - "created": 1675954649.7532492, - "msecs": 753.2491683959961, - "relativeCreated": 35649.49154853821, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Default temperature test for device and virtual device: zigbee/ffw/bath/heating_valve", - "asctime": "2023-02-09 15:57:29,753", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Valve setpoint to %.1f)", - "args": [ - 18 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 60, - "funcName": "__test_default_temperature__", - "created": 1675954650.0555944, - "msecs": 55.594444274902344, - "relativeCreated": 35951.836824417114, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Valve setpoint to 18.0)", - "asctime": "2023-02-09 15:57:30,055", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954649.7536404, - "msecs": 753.6404132843018, - "relativeCreated": 35649.882793426514, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:29,753" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.754745, - "msecs": 754.7450065612793, - "relativeCreated": 35650.98738670349, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:29,754" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 18}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.7761285, - "msecs": 776.1285305023193, - "relativeCreated": 35672.37091064453, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", - "asctime": "2023-02-09 15:57:29,776" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.77688, - "msecs": 776.8800258636475, - "relativeCreated": 35673.12240600586, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:57:29,776" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.777605, - "msecs": 777.6050567626953, - "relativeCreated": 35673.84743690491, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:29,777" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.7781832, - "msecs": 778.1832218170166, - "relativeCreated": 35674.42560195923, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:57:29,778" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.7787976, - "msecs": 778.7976264953613, - "relativeCreated": 35675.04000663757, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:29,778" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.7794383, - "msecs": 779.4382572174072, - "relativeCreated": 35675.68063735962, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:29,779" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954649.780294, - "msecs": 780.2939414978027, - "relativeCreated": 35676.536321640015, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:29,780" - } - ], - "time_consumption": 0.2753005027770996 - }, - { - "name": "__tLogger__", - "msg": "Valve temperature setpoint (is not default temperature) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954650.0562866, - "msecs": 56.28657341003418, - "relativeCreated": 35952.528953552246, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve temperature setpoint (is not default temperature) is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:30,056", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve temperature setpoint (is not default temperature)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954650.05601, - "msecs": 56.01000785827637, - "relativeCreated": 35952.25238800049, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve temperature setpoint (is not default temperature)): True ()", - "asctime": "2023-02-09 15:57:30,056" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve temperature setpoint (is not default temperature)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954650.0561783, - "msecs": 56.17833137512207, - "relativeCreated": 35952.420711517334, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve temperature setpoint (is not default temperature)): result = True ()", - "asctime": "2023-02-09 15:57:30,056" - } - ], - "time_consumption": 0.00010824203491210938 - }, - { - "name": "__tLogger__", - "msg": "Triggering set to default temperature (%.1f)", - "args": [ - 23 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 66, - "funcName": "__test_default_temperature__", - "created": 1675954650.3585308, - "msecs": 358.53075981140137, - "relativeCreated": 36254.77313995361, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Triggering set to default temperature (23.0)", - "asctime": "2023-02-09 15:57:30,358", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954650.0565686, - "msecs": 56.56862258911133, - "relativeCreated": 35952.81100273132, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:30,056" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.0576875, - "msecs": 57.68752098083496, - "relativeCreated": 35953.92990112305, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:30,057" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.0768318, - "msecs": 76.83181762695312, - "relativeCreated": 35973.074197769165, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:30,076" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.0776722, - "msecs": 77.67224311828613, - "relativeCreated": 35973.9146232605, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:30,077" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.078275, - "msecs": 78.27496528625488, - "relativeCreated": 35974.51734542847, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:57:30,078" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954650.0786653, - "msecs": 78.66525650024414, - "relativeCreated": 35974.907636642456, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:30,078" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.0792823, - "msecs": 79.28228378295898, - "relativeCreated": 35975.52466392517, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:30,079" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.080023, - "msecs": 80.02305030822754, - "relativeCreated": 35976.26543045044, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:30,080" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.0806124, - "msecs": 80.6124210357666, - "relativeCreated": 35976.85480117798, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:30,080" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.1251729, - "msecs": 125.17285346984863, - "relativeCreated": 36021.41523361206, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:30,125" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.1661017, - "msecs": 166.10169410705566, - "relativeCreated": 36062.34407424927, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:30,166" - } - ], - "time_consumption": 0.1924290657043457 - }, - { - "name": "__tLogger__", - "msg": "Valve temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954650.3591988, - "msecs": 359.19880867004395, - "relativeCreated": 36255.441188812256, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:57:30,359", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954650.3589516, - "msecs": 358.9515686035156, - "relativeCreated": 36255.19394874573, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:57:30,358" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954650.3590932, - "msecs": 359.09318923950195, - "relativeCreated": 36255.335569381714, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:57:30,359" - } - ], - "time_consumption": 0.00010561943054199219 - } - ], - "time_consumption": 0.6059496402740479, - "time_start": "2023-02-09 15:57:29,753", - "time_finished": "2023-02-09 15:57:30,359" - }, - "Summer mode test: zigbee/ffw/bath/heating_valve": { - "name": "__tLogger__", - "msg": "Summer mode test: zigbee/ffw/bath/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "test_summer_mode", - "created": 1675954650.3596315, - "msecs": 359.6315383911133, - "relativeCreated": 36255.873918533325, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode test: zigbee/ffw/bath/heating_valve", - "asctime": "2023-02-09 15:57:30,359", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 79, - "funcName": "__test_summer_mode__", - "created": 1675954650.660931, - "msecs": 660.9311103820801, - "relativeCreated": 36557.17349052429, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:30,660", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954650.3599353, - "msecs": 359.9352836608887, - "relativeCreated": 36256.1776638031, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:30,359" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.3610394, - "msecs": 361.039400100708, - "relativeCreated": 36257.28178024292, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:30,361" - } - ], - "time_consumption": 0.29989171028137207 - }, - { - "name": "__tLogger__", - "msg": "Summer mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954650.6616273, - "msecs": 661.6272926330566, - "relativeCreated": 36557.86967277527, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:30,661", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Summer mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954650.6613727, - "msecs": 661.3726615905762, - "relativeCreated": 36557.61504173279, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Summer mode): False ()", - "asctime": "2023-02-09 15:57:30,661" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Summer mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954650.6615145, - "msecs": 661.5145206451416, - "relativeCreated": 36557.75690078735, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Summer mode): result = False ()", - "asctime": "2023-02-09 15:57:30,661" - } - ], - "time_consumption": 0.00011277198791503906 - }, - { - "name": "__tLogger__", - "msg": "Activating summer mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 86, - "funcName": "__test_summer_mode__", - "created": 1675954650.9634075, - "msecs": 963.4075164794922, - "relativeCreated": 36859.649896621704, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Activating summer mode", - "asctime": "2023-02-09 15:57:30,963", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/summer_mode", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954650.6619883, - "msecs": 661.9882583618164, - "relativeCreated": 36558.23063850403, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/summer_mode and payload true", - "asctime": "2023-02-09 15:57:30,661" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/summer_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.6630726, - "msecs": 663.0725860595703, - "relativeCreated": 36559.31496620178, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'true'", - "asctime": "2023-02-09 15:57:30,663" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.6811917, - "msecs": 681.1916828155518, - "relativeCreated": 36577.434062957764, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 5}'", - "asctime": "2023-02-09 15:57:30,681" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954650.6817234, - "msecs": 681.7233562469482, - "relativeCreated": 36577.96573638916, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:30,681" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.6823862, - "msecs": 682.3861598968506, - "relativeCreated": 36578.62854003906, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'5'", - "asctime": "2023-02-09 15:57:30,682" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.6831667, - "msecs": 683.1667423248291, - "relativeCreated": 36579.40912246704, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:30,683" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/summer_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.6837637, - "msecs": 683.7637424468994, - "relativeCreated": 36580.00612258911, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'true'", - "asctime": "2023-02-09 15:57:30,683" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.6843383, - "msecs": 684.3383312225342, - "relativeCreated": 36580.580711364746, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:30,684" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.6849067, - "msecs": 684.9067211151123, - "relativeCreated": 36581.149101257324, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:30,684" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.7255998, - "msecs": 725.5997657775879, - "relativeCreated": 36621.8421459198, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:30,725" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.765972, - "msecs": 765.9718990325928, - "relativeCreated": 36662.214279174805, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:30,765" - } - ], - "time_consumption": 0.19743561744689941 - }, - { - "name": "__tLogger__", - "msg": "Summer mode is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954650.9640443, - "msecs": 964.0443325042725, - "relativeCreated": 36860.286712646484, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:30,964", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Summer mode", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954650.963798, - "msecs": 963.7980461120605, - "relativeCreated": 36860.04042625427, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Summer mode): True ()", - "asctime": "2023-02-09 15:57:30,963" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Summer mode", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954650.9639351, - "msecs": 963.935136795044, - "relativeCreated": 36860.177516937256, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Summer mode): result = True ()", - "asctime": "2023-02-09 15:57:30,963" - } - ], - "time_consumption": 0.00010919570922851562 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954650.964445, - "msecs": 964.4451141357422, - "relativeCreated": 36860.687494277954, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:30,964", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954650.964216, - "msecs": 964.2159938812256, - "relativeCreated": 36860.45837402344, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 5 ()", - "asctime": "2023-02-09 15:57:30,964" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954650.9643543, - "msecs": 964.3542766571045, - "relativeCreated": 36860.59665679932, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 5 ()", - "asctime": "2023-02-09 15:57:30,964" - } - ], - "time_consumption": 9.083747863769531e-05 - }, - { - "name": "__tLogger__", - "msg": "Deactivating summer mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__test_summer_mode__", - "created": 1675954651.2667806, - "msecs": 266.7806148529053, - "relativeCreated": 37163.02299499512, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Deactivating summer mode", - "asctime": "2023-02-09 15:57:31,266", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/summer_mode", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954650.964743, - "msecs": 964.74289894104, - "relativeCreated": 36860.98527908325, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/summer_mode and payload false", - "asctime": "2023-02-09 15:57:30,964" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/summer_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.9658325, - "msecs": 965.8324718475342, - "relativeCreated": 36862.074851989746, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'false'", - "asctime": "2023-02-09 15:57:30,965" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.976963, - "msecs": 976.9630432128906, - "relativeCreated": 36873.2054233551, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:57:30,976" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954650.977543, - "msecs": 977.5431156158447, - "relativeCreated": 36873.78549575806, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:30,977" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.9781742, - "msecs": 978.1742095947266, - "relativeCreated": 36874.41658973694, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:30,978" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.9789395, - "msecs": 978.9395332336426, - "relativeCreated": 36875.181913375854, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:30,978" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/summer_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.9795296, - "msecs": 979.529619216919, - "relativeCreated": 36875.77199935913, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'false'", - "asctime": "2023-02-09 15:57:30,979" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.980101, - "msecs": 980.1011085510254, - "relativeCreated": 36876.34348869324, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:30,980" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954650.9807014, - "msecs": 980.7014465332031, - "relativeCreated": 36876.943826675415, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:30,980" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.0219607, - "msecs": 21.960735321044922, - "relativeCreated": 36918.20311546326, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:31,021" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.0665574, - "msecs": 66.55740737915039, - "relativeCreated": 36962.79978752136, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,066" - } - ], - "time_consumption": 0.20022320747375488 - }, - { - "name": "__tLogger__", - "msg": "Summer mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954651.2674549, - "msecs": 267.4548625946045, - "relativeCreated": 37163.69724273682, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:31,267", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Summer mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954651.2672055, - "msecs": 267.20547676086426, - "relativeCreated": 37163.447856903076, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Summer mode): False ()", - "asctime": "2023-02-09 15:57:31,267" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Summer mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954651.2673461, - "msecs": 267.3461437225342, - "relativeCreated": 37163.588523864746, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Summer mode): result = False ()", - "asctime": "2023-02-09 15:57:31,267" - } - ], - "time_consumption": 0.0001087188720703125 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954651.267814, - "msecs": 267.81392097473145, - "relativeCreated": 37164.05630111694, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:57:31,267", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954651.2676263, - "msecs": 267.6262855529785, - "relativeCreated": 37163.86866569519, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:57:31,267" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954651.2677255, - "msecs": 267.72546768188477, - "relativeCreated": 37163.9678478241, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:57:31,267" - } - ], - "time_consumption": 8.845329284667969e-05 - } - ], - "time_consumption": 0.9081823825836182, - "time_start": "2023-02-09 15:57:30,359", - "time_finished": "2023-02-09 15:57:31,267" - }, - "User temperature setpoint test for device and virtual device: zigbee/ffw/bath/heating_valve": { - "name": "__tLogger__", - "msg": "User temperature setpoint test for device and virtual device: zigbee/ffw/bath/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "test_user_temperature_setpoint", - "created": 1675954651.2682328, - "msecs": 268.2328224182129, - "relativeCreated": 37164.475202560425, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "User temperature setpoint test for device and virtual device: zigbee/ffw/bath/heating_valve", - "asctime": "2023-02-09 15:57:31,268", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Changing valve temperature setpoint to '%.1f'", - "args": [ - 18 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 33, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954651.5708034, - "msecs": 570.8034038543701, - "relativeCreated": 37467.04578399658, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing valve temperature setpoint to '18.0'", - "asctime": "2023-02-09 15:57:31,570", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954651.268616, - "msecs": 268.6159610748291, - "relativeCreated": 37164.85834121704, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:31,268" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.2702723, - "msecs": 270.27225494384766, - "relativeCreated": 37166.51463508606, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:31,270" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 18}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.2914987, - "msecs": 291.49866104125977, - "relativeCreated": 37187.74104118347, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", - "asctime": "2023-02-09 15:57:31,291" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.2922127, - "msecs": 292.21272468566895, - "relativeCreated": 37188.45510482788, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:57:31,292" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.2928555, - "msecs": 292.85550117492676, - "relativeCreated": 37189.09788131714, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,292" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.2934575, - "msecs": 293.4575080871582, - "relativeCreated": 37189.69988822937, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:57:31,293" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.2940469, - "msecs": 294.04687881469727, - "relativeCreated": 37190.28925895691, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,294" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.2946248, - "msecs": 294.62480545043945, - "relativeCreated": 37190.86718559265, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:31,294" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.2952383, - "msecs": 295.2382564544678, - "relativeCreated": 37191.48063659668, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,295" - } - ], - "time_consumption": 0.27556514739990234 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954651.5715027, - "msecs": 571.502685546875, - "relativeCreated": 37467.74506568909, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:57:31,571", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954651.5712235, - "msecs": 571.2234973907471, - "relativeCreated": 37467.46587753296, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 18 ()", - "asctime": "2023-02-09 15:57:31,571" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954651.571397, - "msecs": 571.397066116333, - "relativeCreated": 37467.639446258545, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 18 ()", - "asctime": "2023-02-09 15:57:31,571" - } - ], - "time_consumption": 0.00010561943054199219 - }, - { - "name": "__tLogger__", - "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954651.5718544, - "msecs": 571.8543529510498, - "relativeCreated": 37468.09673309326, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device user temperature is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:57:31,571", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device user temperature", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954651.5716703, - "msecs": 571.6702938079834, - "relativeCreated": 37467.912673950195, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device user temperature): 18 ()", - "asctime": "2023-02-09 15:57:31,571" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device user temperature", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954651.5717673, - "msecs": 571.7673301696777, - "relativeCreated": 37468.00971031189, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device user temperature): result = 18 ()", - "asctime": "2023-02-09 15:57:31,571" - } - ], - "time_consumption": 8.702278137207031e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing videv user temperature setpoint to '%.1f'", - "args": [ - 23 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 41, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954651.874071, - "msecs": 874.0708827972412, - "relativeCreated": 37770.31326293945, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing videv user temperature setpoint to '23.0'", - "asctime": "2023-02-09 15:57:31,874", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "23" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954651.572149, - "msecs": 572.1490383148193, - "relativeCreated": 37468.39141845703, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload 23", - "asctime": "2023-02-09 15:57:31,572" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.5732791, - "msecs": 573.2791423797607, - "relativeCreated": 37469.52152252197, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:31,573" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.5909166, - "msecs": 590.916633605957, - "relativeCreated": 37487.15901374817, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:57:31,590" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954651.5914252, - "msecs": 591.4251804351807, - "relativeCreated": 37487.66756057739, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:31,591" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.5920656, - "msecs": 592.0655727386475, - "relativeCreated": 37488.30795288086, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:31,592" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.5928237, - "msecs": 592.8237438201904, - "relativeCreated": 37489.0661239624, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,592" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.5934558, - "msecs": 593.4557914733887, - "relativeCreated": 37489.6981716156, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:31,593" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.5940914, - "msecs": 594.0914154052734, - "relativeCreated": 37490.333795547485, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,594" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.594695, - "msecs": 594.6950912475586, - "relativeCreated": 37490.93747138977, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:31,594" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.641747, - "msecs": 641.746997833252, - "relativeCreated": 37537.989377975464, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:31,641" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.687028, - "msecs": 687.0279312133789, - "relativeCreated": 37583.27031135559, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,687" - } - ], - "time_consumption": 0.1870429515838623 - }, - { - "name": "__tLogger__", - "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954651.874736, - "msecs": 874.7360706329346, - "relativeCreated": 37770.97845077515, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve device temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:57:31,874", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve device temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954651.874492, - "msecs": 874.4919300079346, - "relativeCreated": 37770.73431015015, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve device temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:57:31,874" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve device temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954651.8746297, - "msecs": 874.6297359466553, - "relativeCreated": 37770.87211608887, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve device temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:57:31,874" - } - ], - "time_consumption": 0.00010633468627929688 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954651.8751552, - "msecs": 875.1552104949951, - "relativeCreated": 37771.39759063721, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:57:31,875", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954651.8749492, - "msecs": 874.9492168426514, - "relativeCreated": 37771.19159698486, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 23 ()", - "asctime": "2023-02-09 15:57:31,874" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954651.87505, - "msecs": 875.0500679016113, - "relativeCreated": 37771.29244804382, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 23 ()", - "asctime": "2023-02-09 15:57:31,875" - } - ], - "time_consumption": 0.00010514259338378906 - }, - { - "name": "__tLogger__", - "msg": "Changing valve temperature setpoint to '%.1f'", - "args": [ - 18 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 33, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954652.1773944, - "msecs": 177.39439010620117, - "relativeCreated": 38073.63677024841, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing valve temperature setpoint to '18.0'", - "asctime": "2023-02-09 15:57:32,177", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954651.875463, - "msecs": 875.4630088806152, - "relativeCreated": 37771.70538902283, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:31,875" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.8765883, - "msecs": 876.5883445739746, - "relativeCreated": 37772.83072471619, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:31,876" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 18}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.8955426, - "msecs": 895.5426216125488, - "relativeCreated": 37791.78500175476, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", - "asctime": "2023-02-09 15:57:31,895" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.8962796, - "msecs": 896.2795734405518, - "relativeCreated": 37792.521953582764, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:57:31,896" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.8969252, - "msecs": 896.9252109527588, - "relativeCreated": 37793.16759109497, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,896" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.8975601, - "msecs": 897.5601196289062, - "relativeCreated": 37793.80249977112, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:57:31,897" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.8981764, - "msecs": 898.1764316558838, - "relativeCreated": 37794.418811798096, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,898" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.898749, - "msecs": 898.7491130828857, - "relativeCreated": 37794.9914932251, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:31,898" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954651.8993642, - "msecs": 899.3642330169678, - "relativeCreated": 37795.60661315918, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:31,899" - } - ], - "time_consumption": 0.2780301570892334 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954652.1780894, - "msecs": 178.08938026428223, - "relativeCreated": 38074.331760406494, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:57:32,178", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954652.177846, - "msecs": 177.84595489501953, - "relativeCreated": 38074.08833503723, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 18 ()", - "asctime": "2023-02-09 15:57:32,177" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954652.177984, - "msecs": 177.98399925231934, - "relativeCreated": 38074.22637939453, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 18 ()", - "asctime": "2023-02-09 15:57:32,177" - } - ], - "time_consumption": 0.00010538101196289062 - }, - { - "name": "__tLogger__", - "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954652.1784594, - "msecs": 178.45940589904785, - "relativeCreated": 38074.70178604126, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device user temperature is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:57:32,178", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device user temperature", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954652.1782691, - "msecs": 178.2691478729248, - "relativeCreated": 38074.51152801514, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device user temperature): 18 ()", - "asctime": "2023-02-09 15:57:32,178" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device user temperature", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954652.1783717, - "msecs": 178.37166786193848, - "relativeCreated": 38074.61404800415, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device user temperature): result = 18 ()", - "asctime": "2023-02-09 15:57:32,178" - } - ], - "time_consumption": 8.7738037109375e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing videv user temperature setpoint to '%.1f'", - "args": [ - 23 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 41, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954652.479733, - "msecs": 479.7329902648926, - "relativeCreated": 38375.975370407104, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing videv user temperature setpoint to '23.0'", - "asctime": "2023-02-09 15:57:32,479", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "23" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954652.1787586, - "msecs": 178.7586212158203, - "relativeCreated": 38075.00100135803, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload 23", - "asctime": "2023-02-09 15:57:32,178" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.179859, - "msecs": 179.85892295837402, - "relativeCreated": 38076.101303100586, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:32,179" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.1981337, - "msecs": 198.1337070465088, - "relativeCreated": 38094.37608718872, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:57:32,198" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954652.198669, - "msecs": 198.6689567565918, - "relativeCreated": 38094.911336898804, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/bath/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:32,198" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.1993146, - "msecs": 199.31459426879883, - "relativeCreated": 38095.55697441101, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:32,199" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.2000844, - "msecs": 200.08444786071777, - "relativeCreated": 38096.32682800293, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:32,200" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.2006717, - "msecs": 200.67167282104492, - "relativeCreated": 38096.91405296326, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:57:32,200" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.2013223, - "msecs": 201.3223171234131, - "relativeCreated": 38097.564697265625, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:32,201" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.bath.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/bath/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.201901, - "msecs": 201.90095901489258, - "relativeCreated": 38098.143339157104, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/bath/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:32,201" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.2497182, - "msecs": 249.71818923950195, - "relativeCreated": 38145.960569381714, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:32,249" - }, - { - "name": "smart_brain.mqtt.videv.ffw.bath.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/bath/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.295039, - "msecs": 295.03893852233887, - "relativeCreated": 38191.28131866455, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:32,295" - } - ], - "time_consumption": 0.1846940517425537 - }, - { - "name": "__tLogger__", - "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954652.4803185, - "msecs": 480.318546295166, - "relativeCreated": 38376.56092643738, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve device temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:57:32,480", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve device temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954652.4801066, - "msecs": 480.1065921783447, - "relativeCreated": 38376.34897232056, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve device temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:57:32,480" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve device temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954652.4802258, - "msecs": 480.2258014678955, - "relativeCreated": 38376.46818161011, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve device temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:57:32,480" - } - ], - "time_consumption": 9.274482727050781e-05 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954652.4806206, - "msecs": 480.6206226348877, - "relativeCreated": 38376.8630027771, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:57:32,480", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954652.4804647, - "msecs": 480.4646968841553, - "relativeCreated": 38376.70707702637, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 23 ()", - "asctime": "2023-02-09 15:57:32,480" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954652.4805467, - "msecs": 480.5467128753662, - "relativeCreated": 38376.78909301758, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 23 ()", - "asctime": "2023-02-09 15:57:32,480" - } - ], - "time_consumption": 7.390975952148438e-05 - } - ], - "time_consumption": 1.2123878002166748, - "time_start": "2023-02-09 15:57:31,268", - "time_finished": "2023-02-09 15:57:32,480" - }, - "Brightness test for device and virtual device: zigbee/ffw/julian/main_light": { - "name": "__tLogger__", - "msg": "Brightness test for device and virtual device: zigbee/ffw/julian/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_brightness", - "created": 1675954652.4810905, - "msecs": 481.0905456542969, - "relativeCreated": 38377.33292579651, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness test for device and virtual device: zigbee/ffw/julian/main_light", - "asctime": "2023-02-09 15:57:32,481", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 57, - "funcName": "__test_brightness__", - "created": 1675954652.7827115, - "msecs": 782.7115058898926, - "relativeCreated": 38678.953886032104, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:32,782", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/julian/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954652.4813445, - "msecs": 481.34446144104004, - "relativeCreated": 38377.58684158325, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:32,481" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954652.4818687, - "msecs": 481.8687438964844, - "relativeCreated": 38378.111124038696, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:32,481" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/julian/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.4827013, - "msecs": 482.70130157470703, - "relativeCreated": 38378.94368171692, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:32,482" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.4833016, - "msecs": 483.30163955688477, - "relativeCreated": 38379.5440196991, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:32,483" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.5256674, - "msecs": 525.6674289703369, - "relativeCreated": 38421.90980911255, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:32,525" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.5263767, - "msecs": 526.3767242431641, - "relativeCreated": 38422.619104385376, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:32,526" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.526918, - "msecs": 526.9179344177246, - "relativeCreated": 38423.16031455994, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:32,526" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.527473, - "msecs": 527.472972869873, - "relativeCreated": 38423.715353012085, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:32,527" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.5297961, - "msecs": 529.7961235046387, - "relativeCreated": 38426.03850364685, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:32,529" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.530447, - "msecs": 530.4470062255859, - "relativeCreated": 38426.6893863678, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:32,530" - } - ], - "time_consumption": 0.25226449966430664 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954652.783395, - "msecs": 783.3950519561768, - "relativeCreated": 38679.63743209839, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:32,783", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954652.7831488, - "msecs": 783.1487655639648, - "relativeCreated": 38679.39114570618, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:32,783" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954652.7832882, - "msecs": 783.2882404327393, - "relativeCreated": 38679.53062057495, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:32,783" - } - ], - "time_consumption": 0.0001068115234375 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954653.0856943, - "msecs": 85.6943130493164, - "relativeCreated": 38981.93669319153, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:33,085", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954652.7837508, - "msecs": 783.7507724761963, - "relativeCreated": 38679.99315261841, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:32,783" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.7848635, - "msecs": 784.8634719848633, - "relativeCreated": 38681.105852127075, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:32,784" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.7874553, - "msecs": 787.4553203582764, - "relativeCreated": 38683.69770050049, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:32,787" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954652.7881267, - "msecs": 788.1267070770264, - "relativeCreated": 38684.36908721924, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:32,788" - } - ], - "time_consumption": 0.29756760597229004 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954653.086338, - "msecs": 86.33804321289062, - "relativeCreated": 38982.5804233551, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:33,086", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954653.086101, - "msecs": 86.10105514526367, - "relativeCreated": 38982.343435287476, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:33,086" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954653.086234, - "msecs": 86.23409271240234, - "relativeCreated": 38982.476472854614, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:33,086" - } - ], - "time_consumption": 0.00010395050048828125 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954653.086736, - "msecs": 86.73596382141113, - "relativeCreated": 38982.97834396362, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:33,086", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954653.0865505, - "msecs": 86.55047416687012, - "relativeCreated": 38982.79285430908, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:33,086" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954653.0866482, - "msecs": 86.64822578430176, - "relativeCreated": 38982.890605926514, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:33,086" - } - ], - "time_consumption": 8.7738037109375e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954653.388924, - "msecs": 388.92388343811035, - "relativeCreated": 39285.16626358032, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:33,388", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954653.0870214, - "msecs": 87.0213508605957, - "relativeCreated": 38983.26373100281, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:33,087" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.0880852, - "msecs": 88.08517456054688, - "relativeCreated": 38984.32755470276, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:33,088" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.089875, - "msecs": 89.8749828338623, - "relativeCreated": 38986.117362976074, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:33,089" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954653.0903485, - "msecs": 90.34848213195801, - "relativeCreated": 38986.59086227417, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:33,090" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.0913472, - "msecs": 91.34721755981445, - "relativeCreated": 38987.58959770203, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:33,091" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.1363544, - "msecs": 136.3544464111328, - "relativeCreated": 39032.596826553345, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:33,136" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.1370947, - "msecs": 137.09473609924316, - "relativeCreated": 39033.337116241455, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:33,137" - } - ], - "time_consumption": 0.2518291473388672 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954653.3896477, - "msecs": 389.6477222442627, - "relativeCreated": 39285.890102386475, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:33,389", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954653.3893926, - "msecs": 389.392614364624, - "relativeCreated": 39285.634994506836, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:33,389" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954653.3895268, - "msecs": 389.5268440246582, - "relativeCreated": 39285.76922416687, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:33,389" - } - ], - "time_consumption": 0.00012087821960449219 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954653.390004, - "msecs": 390.00391960144043, - "relativeCreated": 39286.24629974365, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:33,390", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954653.389818, - "msecs": 389.8179531097412, - "relativeCreated": 39286.06033325195, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:33,389" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954653.3899152, - "msecs": 389.91522789001465, - "relativeCreated": 39286.15760803223, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:33,389" - } - ], - "time_consumption": 8.869171142578125e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954653.6913967, - "msecs": 691.3967132568359, - "relativeCreated": 39587.63909339905, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:33,691", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954653.390348, - "msecs": 390.347957611084, - "relativeCreated": 39286.590337753296, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:33,390" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.3914418, - "msecs": 391.44182205200195, - "relativeCreated": 39287.684202194214, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:33,391" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.393936, - "msecs": 393.9359188079834, - "relativeCreated": 39290.178298950195, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:33,393" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.3946078, - "msecs": 394.6077823638916, - "relativeCreated": 39290.8501625061, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:33,394" - } - ], - "time_consumption": 0.29678893089294434 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954653.6920688, - "msecs": 692.0688152313232, - "relativeCreated": 39588.311195373535, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:33,692", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954653.6918323, - "msecs": 691.8323040008545, - "relativeCreated": 39588.07468414307, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:33,691" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954653.6919649, - "msecs": 691.964864730835, - "relativeCreated": 39588.20724487305, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:33,691" - } - ], - "time_consumption": 0.00010395050048828125 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954653.6924512, - "msecs": 692.4512386322021, - "relativeCreated": 39588.693618774414, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:33,692", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954653.692238, - "msecs": 692.2380924224854, - "relativeCreated": 39588.4804725647, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:33,692" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954653.692355, - "msecs": 692.3549175262451, - "relativeCreated": 39588.59729766846, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:33,692" - } - ], - "time_consumption": 9.632110595703125e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954653.9947226, - "msecs": 994.7226047515869, - "relativeCreated": 39890.9649848938, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:33,994", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954653.6927354, - "msecs": 692.7354335784912, - "relativeCreated": 39588.9778137207, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/julian/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:33,692" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.693818, - "msecs": 693.8180923461914, - "relativeCreated": 39590.0604724884, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:33,693" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.6955602, - "msecs": 695.5602169036865, - "relativeCreated": 39591.8025970459, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:33,695" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954653.6960094, - "msecs": 696.0093975067139, - "relativeCreated": 39592.251777648926, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:33,696" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.6970077, - "msecs": 697.0076560974121, - "relativeCreated": 39593.250036239624, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:33,697" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.740215, - "msecs": 740.2150630950928, - "relativeCreated": 39636.457443237305, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:33,740" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954653.7409718, - "msecs": 740.9718036651611, - "relativeCreated": 39637.21418380737, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:33,740" - } - ], - "time_consumption": 0.2537508010864258 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954653.9954069, - "msecs": 995.4068660736084, - "relativeCreated": 39891.64924621582, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:33,995", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954653.9951296, - "msecs": 995.1295852661133, - "relativeCreated": 39891.371965408325, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:33,995" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954653.9952638, - "msecs": 995.2638149261475, - "relativeCreated": 39891.50619506836, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:33,995" + "asctime": "2023-02-15 07:14:32,177" } ], "time_consumption": 0.0001430511474609375 }, { "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], "levelname": "DEBUG", "levelno": 10, "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", @@ -58891,24 +79467,24 @@ "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 74, - "funcName": "__test_brightness__", - "created": 1675954654.297626, - "msecs": 297.6260185241699, - "relativeCreated": 40193.86839866638, - "thread": 139894075555840, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441672.4790986, + "msecs": 479.0985584259033, + "relativeCreated": 69482.61380195618, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:34,297", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:32,479", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", - "off" + "my_apps/gfw/dirk/powerplug/output/4", + "true" ], "levelname": "DEBUG", "levelno": 10, @@ -58920,22 +79496,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954653.9956596, - "msecs": 995.659589767456, - "relativeCreated": 39891.90196990967, - "thread": 139894075555840, + "created": 1676441672.177968, + "msecs": 177.96802520751953, + "relativeCreated": 69181.4832687378, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:33,995" + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", + "asctime": "2023-02-15 07:14:32,177" }, { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", - "b'off'" + "my_apps/gfw/dirk/powerplug/output/4", + "b'true'" ], "levelname": "DEBUG", "levelno": 10, @@ -58947,21 +79523,278 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954653.996779, - "msecs": 996.7789649963379, - "relativeCreated": 39893.02134513855, - "thread": 139894051313216, + "created": 1676441672.179309, + "msecs": 179.30889129638672, + "relativeCreated": 69182.82413482666, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:33,996" + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", + "asctime": "2023-02-15 07:14:32,179" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/state", + "videv/gfw/dirk/pc_dock/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.1818995, + "msecs": 181.8995475769043, + "relativeCreated": 69185.41479110718, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true'", + "asctime": "2023-02-15 07:14:32,181" + } + ], + "time_consumption": 0.297199010848999 + }, + { + "name": "__tLogger__", + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441672.4798267, + "msecs": 479.8266887664795, + "relativeCreated": 69483.34193229675, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:32,479", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441672.4795532, + "msecs": 479.55322265625, + "relativeCreated": 69483.06846618652, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:32,479" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441672.4797049, + "msecs": 479.7048568725586, + "relativeCreated": 69483.22010040283, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:32,479" + } + ], + "time_consumption": 0.00012183189392089844 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441672.4803016, + "msecs": 480.3016185760498, + "relativeCreated": 69483.81686210632, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:32,480", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441672.4800663, + "msecs": 480.06629943847656, + "relativeCreated": 69483.58154296875, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:32,480" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441672.4801853, + "msecs": 480.18527030944824, + "relativeCreated": 69483.70051383972, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:32,480" + } + ], + "time_consumption": 0.0001163482666015625 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441672.781709, + "msecs": 781.7089557647705, + "relativeCreated": 69785.22419929504, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:32,781", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/pc_dock/state/set", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441672.4805844, + "msecs": 480.58438301086426, + "relativeCreated": 69484.09962654114, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false", + "asctime": "2023-02-15 07:14:32,480" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/4/set", "b'false'" ], "levelname": "DEBUG", @@ -58974,22 +79807,49 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954653.9989552, - "msecs": 998.955249786377, - "relativeCreated": 39895.19762992859, - "thread": 139894051313216, + "created": 1676441672.4838674, + "msecs": 483.8674068450928, + "relativeCreated": 69487.38265037537, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:33,998" + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4/set and payload b'false'", + "asctime": "2023-02-15 07:14:32,483" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "my_apps/gfw/dirk/powerplug/output/4", + "false" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441672.4844742, + "msecs": 484.47418212890625, + "relativeCreated": 69487.98942565918, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", + "asctime": "2023-02-15 07:14:32,484" + }, + { + "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "my_apps/gfw/dirk/powerplug/output/4", + "b'false'" ], "levelname": "DEBUG", "levelno": 10, @@ -59001,27 +79861,1901 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954653.999632, - "msecs": 999.6318817138672, - "relativeCreated": 39895.87426185608, - "thread": 139894051313216, + "created": 1676441672.4858294, + "msecs": 485.82935333251953, + "relativeCreated": 69489.3445968628, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:33,999" + "process": 509276, + "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", + "asctime": "2023-02-15 07:14:32,485" + }, + { + "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/dirk/pc_dock/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.5295246, + "msecs": 529.524564743042, + "relativeCreated": 69533.03980827332, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", + "asctime": "2023-02-15 07:14:32,529" } ], - "time_consumption": 0.29799413681030273 + "time_consumption": 0.2521843910217285 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441672.7825224, + "msecs": 782.522439956665, + "relativeCreated": 69786.03768348694, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:32,782", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441672.7821643, + "msecs": 782.1643352508545, + "relativeCreated": 69785.67957878113, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:32,782" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441672.782318, + "msecs": 782.318115234375, + "relativeCreated": 69785.83335876465, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:32,782" + } + ], + "time_consumption": 0.00020432472229003906 } ], - "time_consumption": 1.816535472869873, - "time_start": "2023-02-09 15:57:32,481", - "time_finished": "2023-02-09 15:57:34,297" + "time_consumption": 1.2106976509094238, + "time_start": "2023-02-15 07:14:31,571", + "time_finished": "2023-02-15 07:14:32,782" }, - "Color temperature test for device and virtual device: zigbee/ffw/julian/main_light": { + "Brightness test for device and virtual device: zigbee/gfw/floor/main_light_1": { "name": "__tLogger__", - "msg": "Color temperature test for device and virtual device: zigbee/ffw/julian/main_light", + "msg": "Brightness test for device and virtual device: zigbee/gfw/floor/main_light_1", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 50, + "funcName": "test_brightness", + "created": 1676441672.7830873, + "msecs": 783.0872535705566, + "relativeCreated": 69786.60249710083, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Brightness test for device and virtual device: zigbee/gfw/floor/main_light_1", + "asctime": "2023-02-15 07:14:32,783", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions (Power on)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 57, + "funcName": "__test_brightness__", + "created": 1676441673.0846357, + "msecs": 84.63573455810547, + "relativeCreated": 70088.15097808838, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions (Power on)", + "asctime": "2023-02-15 07:14:33,084", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/gfw/floor/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441672.7834294, + "msecs": 783.4293842315674, + "relativeCreated": 69786.94462776184, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:32,783" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/gfw/floor/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.7848582, + "msecs": 784.858226776123, + "relativeCreated": 69788.3734703064, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:32,784" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1/get", + "b'{\"state\": \"\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.788493, + "msecs": 788.4929180145264, + "relativeCreated": 69792.0081615448, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:32,788" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441672.7890756, + "msecs": 789.0756130218506, + "relativeCreated": 69792.59085655212, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:32,789" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2/get", + "b'{\"state\": \"\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.7905633, + "msecs": 790.5633449554443, + "relativeCreated": 69794.07858848572, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:32,790" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441672.7910676, + "msecs": 791.0676002502441, + "relativeCreated": 69794.58284378052, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:32,791" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.7921062, + "msecs": 792.1061515808105, + "relativeCreated": 69795.62139511108, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:32,792" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.7928476, + "msecs": 792.8476333618164, + "relativeCreated": 69796.36287689209, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:32,792" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.7936823, + "msecs": 793.682336807251, + "relativeCreated": 69797.19758033752, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:32,793" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.8390198, + "msecs": 839.019775390625, + "relativeCreated": 69842.5350189209, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:32,839" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/color_temp", + "b'5'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441672.8756568, + "msecs": 875.6568431854248, + "relativeCreated": 69879.1720867157, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:32,875" + } + ], + "time_consumption": 0.20897889137268066 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441673.085401, + "msecs": 85.40105819702148, + "relativeCreated": 70088.9163017273, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:33,085", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441673.0850863, + "msecs": 85.08634567260742, + "relativeCreated": 70088.60158920288, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:33,085" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441673.0852768, + "msecs": 85.27684211730957, + "relativeCreated": 70088.79208564758, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:33,085" + } + ], + "time_consumption": 0.00012421607971191406 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441673.386983, + "msecs": 386.98291778564453, + "relativeCreated": 70390.49816131592, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:33,386", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441673.0858033, + "msecs": 85.80327033996582, + "relativeCreated": 70089.31851387024, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:33,085" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.0870655, + "msecs": 87.06545829772949, + "relativeCreated": 70090.580701828, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:33,087" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.0895133, + "msecs": 89.51330184936523, + "relativeCreated": 70093.02854537964, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:33,089" + } + ], + "time_consumption": 0.2974696159362793 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441673.387703, + "msecs": 387.70294189453125, + "relativeCreated": 70391.2181854248, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:33,387", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441673.3874333, + "msecs": 387.4332904815674, + "relativeCreated": 70390.94853401184, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:33,387" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441673.3875825, + "msecs": 387.58254051208496, + "relativeCreated": 70391.09778404236, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:33,387" + } + ], + "time_consumption": 0.00012040138244628906 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441673.3881533, + "msecs": 388.1533145904541, + "relativeCreated": 70391.66855812073, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:33,388", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441673.387898, + "msecs": 387.8979682922363, + "relativeCreated": 70391.41321182251, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:33,387" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441673.3880067, + "msecs": 388.00668716430664, + "relativeCreated": 70391.52193069458, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:33,388" + } + ], + "time_consumption": 0.00014662742614746094 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441673.6896174, + "msecs": 689.617395401001, + "relativeCreated": 70693.13263893127, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:33,689", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441673.388487, + "msecs": 388.4871006011963, + "relativeCreated": 70392.00234413147, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:33,388" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.3924503, + "msecs": 392.45033264160156, + "relativeCreated": 70395.96557617188, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:33,392" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441673.3929257, + "msecs": 392.9257392883301, + "relativeCreated": 70396.4409828186, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:33,392" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.3938618, + "msecs": 393.8617706298828, + "relativeCreated": 70397.37701416016, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:33,393" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.3950493, + "msecs": 395.0493335723877, + "relativeCreated": 70398.56457710266, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:33,395" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.439008, + "msecs": 439.0079975128174, + "relativeCreated": 70442.52324104309, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:33,439" + } + ], + "time_consumption": 0.2506093978881836 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441673.6903648, + "msecs": 690.3648376464844, + "relativeCreated": 70693.88008117676, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:33,690", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441673.690089, + "msecs": 690.0889873504639, + "relativeCreated": 70693.60423088074, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:33,690" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441673.6902432, + "msecs": 690.2432441711426, + "relativeCreated": 70693.75848770142, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:33,690" + } + ], + "time_consumption": 0.00012159347534179688 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441673.6908345, + "msecs": 690.8345222473145, + "relativeCreated": 70694.34976577759, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:33,690", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441673.6906085, + "msecs": 690.6085014343262, + "relativeCreated": 70694.1237449646, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 50 ()", + "asctime": "2023-02-15 07:14:33,690" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441673.690722, + "msecs": 690.7219886779785, + "relativeCreated": 70694.23723220825, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:33,690" + } + ], + "time_consumption": 0.0001125335693359375 + }, + { + "name": "__tLogger__", + "msg": "Changing light device brightness to '%d'", + "args": [ + 65 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 63, + "funcName": "__test_brightness__", + "created": 1676441673.9922864, + "msecs": 992.2864437103271, + "relativeCreated": 70995.8016872406, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device brightness to '65'", + "asctime": "2023-02-15 07:14:33,992", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441673.6911578, + "msecs": 691.1578178405762, + "relativeCreated": 70694.67306137085, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:33,691" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.6922905, + "msecs": 692.2905445098877, + "relativeCreated": 70695.80578804016, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:33,692" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness", + "b'65'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.6943572, + "msecs": 694.35715675354, + "relativeCreated": 70697.87240028381, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'65'", + "asctime": "2023-02-15 07:14:33,694" + } + ], + "time_consumption": 0.2979292869567871 + }, + { + "name": "__tLogger__", + "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441673.993057, + "msecs": 993.0570125579834, + "relativeCreated": 70996.57225608826, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:33,993", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441673.992787, + "msecs": 992.7868843078613, + "relativeCreated": 70996.30212783813, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device brightness): 65 ()", + "asctime": "2023-02-15 07:14:33,992" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441673.9929383, + "msecs": 992.9382801055908, + "relativeCreated": 70996.45352363586, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:33,992" + } + ], + "time_consumption": 0.00011873245239257812 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "65", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441673.9934585, + "msecs": 993.4585094451904, + "relativeCreated": 70996.97375297546, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 65 and Type is ).", + "asctime": "2023-02-15 07:14:33,993", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441673.9932518, + "msecs": 993.2518005371094, + "relativeCreated": 70996.76704406738, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 65 ()", + "asctime": "2023-02-15 07:14:33,993" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "65", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441673.9933603, + "msecs": 993.3602809906006, + "relativeCreated": 70996.87552452087, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 65 ()", + "asctime": "2023-02-15 07:14:33,993" + } + ], + "time_consumption": 9.822845458984375e-05 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 69, + "funcName": "__test_brightness__", + "created": 1676441674.294925, + "msecs": 294.9249744415283, + "relativeCreated": 71298.4402179718, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing virtual device brightness to '50'", + "asctime": "2023-02-15 07:14:34,294", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441673.9937384, + "msecs": 993.7384128570557, + "relativeCreated": 70997.25365638733, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:33,993" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.997556, + "msecs": 997.5559711456299, + "relativeCreated": 71001.0712146759, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:33,997" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441673.998035, + "msecs": 998.0349540710449, + "relativeCreated": 71001.55019760132, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:33,998" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441673.998933, + "msecs": 998.9330768585205, + "relativeCreated": 71002.4483203888, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:33,998" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441674.0000832, + "msecs": 0.08320808410644531, + "relativeCreated": 71003.59845161438, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:34,000" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441674.0430593, + "msecs": 43.059349060058594, + "relativeCreated": 71046.57459259033, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:34,043" + } + ], + "time_consumption": 0.2518656253814697 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441674.2956553, + "msecs": 295.6552505493164, + "relativeCreated": 71299.17049407959, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:34,295", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441674.2953808, + "msecs": 295.3808307647705, + "relativeCreated": 71298.89607429504, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 50 ()", + "asctime": "2023-02-15 07:14:34,295" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441674.2955325, + "msecs": 295.5324649810791, + "relativeCreated": 71299.04770851135, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:34,295" + } + ], + "time_consumption": 0.0001227855682373047 + }, + { + "name": "__tLogger__", + "msg": "Resetting precondition (Power off)", + "args": [], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 74, + "funcName": "__test_brightness__", + "created": 1676441674.5969188, + "msecs": 596.9188213348389, + "relativeCreated": 71600.43406486511, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting precondition (Power off)", + "asctime": "2023-02-15 07:14:34,596", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/gfw/floor/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441674.2959442, + "msecs": 295.9442138671875, + "relativeCreated": 71299.45945739746, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:34,295" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/gfw/floor/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441674.2973444, + "msecs": 297.344446182251, + "relativeCreated": 71300.85968971252, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:34,297" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441674.2997518, + "msecs": 299.75175857543945, + "relativeCreated": 71303.26700210571, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:34,299" + } + ], + "time_consumption": 0.2971670627593994 + } + ], + "time_consumption": 1.8138315677642822, + "time_start": "2023-02-15 07:14:32,783", + "time_finished": "2023-02-15 07:14:34,596" + }, + "Color temperature test for device and virtual device: zigbee/gfw/floor/main_light_1": { + "name": "__tLogger__", + "msg": "Color temperature test for device and virtual device: zigbee/gfw/floor/main_light_1", "args": null, "levelname": "INFO", "levelno": 20, @@ -59033,15 +81767,15 @@ "stack_info": null, "lineno": 81, "funcName": "test_color_temp", - "created": 1675954654.2983677, - "msecs": 298.3677387237549, - "relativeCreated": 40194.61011886597, - "thread": 139894075555840, + "created": 1676441674.5975647, + "msecs": 597.564697265625, + "relativeCreated": 71601.0799407959, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Color temperature test for device and virtual device: zigbee/ffw/julian/main_light", - "asctime": "2023-02-09 15:57:34,298", + "process": 509276, + "message": "Color temperature test for device and virtual device: zigbee/gfw/floor/main_light_1", + "asctime": "2023-02-15 07:14:34,597", "moduleLogger": [], "testcaseLogger": [ { @@ -59058,21 +81792,21 @@ "stack_info": null, "lineno": 88, "funcName": "__test_color_temp__", - "created": 1675954654.601112, - "msecs": 601.111888885498, - "relativeCreated": 40497.35426902771, - "thread": 139894075555840, + "created": 1676441674.899058, + "msecs": 899.0581035614014, + "relativeCreated": 71902.57334709167, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:34,601", + "asctime": "2023-02-15 07:14:34,899", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "on" ], "levelname": "DEBUG", @@ -59085,48 +81819,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954654.298687, - "msecs": 298.6869812011719, - "relativeCreated": 40194.929361343384, - "thread": 139894075555840, + "created": 1676441674.5978377, + "msecs": 597.8376865386963, + "relativeCreated": 71601.35293006897, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:34,298" + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:34,597" }, { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954654.2992597, - "msecs": 299.2596626281738, - "relativeCreated": 40195.502042770386, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:34,299" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "b'on'" ], "levelname": "DEBUG", @@ -59139,22 +81846,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954654.3002572, - "msecs": 300.25720596313477, - "relativeCreated": 40196.49958610535, - "thread": 139894051313216, + "created": 1676441674.5990598, + "msecs": 599.0598201751709, + "relativeCreated": 71602.57506370544, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:34,300" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:34,599" }, { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "zigbee/gfw/floor/main_light_1/get", + "b'{\"state\": \"\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -59166,21 +81873,102 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954654.3009248, - "msecs": 300.92477798461914, - "relativeCreated": 40197.16715812683, - "thread": 139894051313216, + "created": 1676441674.6031063, + "msecs": 603.1062602996826, + "relativeCreated": 71606.62150382996, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:34,300" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:34,603" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441674.6034813, + "msecs": 603.4812927246094, + "relativeCreated": 71606.99653625488, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:34,603" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/state", + "zigbee/gfw/floor/main_light_2/get", + "b'{\"state\": \"\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441674.6039088, + "msecs": 603.9087772369385, + "relativeCreated": 71607.42402076721, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:34,603" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441674.6039865, + "msecs": 603.9865016937256, + "relativeCreated": 71607.501745224, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:34,603" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", "b'true'" ], "levelname": "DEBUG", @@ -59193,22 +81981,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954654.3416517, - "msecs": 341.65167808532715, - "relativeCreated": 40237.89405822754, - "thread": 139894051313216, + "created": 1676441674.6042013, + "msecs": 604.2013168334961, + "relativeCreated": 71607.71656036377, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:34,341" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:34,604" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -59220,18 +82008,45 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954654.3423607, - "msecs": 342.3607349395752, - "relativeCreated": 40238.60311508179, - "thread": 139894051313216, + "created": 1676441674.6043735, + "msecs": 604.3734550476074, + "relativeCreated": 71607.88869857788, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:34,342" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:34,604" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441674.604528, + "msecs": 604.5279502868652, + "relativeCreated": 71608.04319381714, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:34,604" } ], - "time_consumption": 0.25875115394592285 + "time_consumption": 0.29453015327453613 }, { "name": "__tLogger__", @@ -59250,15 +82065,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954654.6016798, - "msecs": 601.679801940918, - "relativeCreated": 40497.92218208313, - "thread": 139894075555840, + "created": 1676441674.8997889, + "msecs": 899.7888565063477, + "relativeCreated": 71903.30410003662, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:34,601", + "asctime": "2023-02-15 07:14:34,899", "moduleLogger": [ { "name": "__unittest__", @@ -59278,15 +82093,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954654.601467, - "msecs": 601.4668941497803, - "relativeCreated": 40497.70927429199, - "thread": 139894075555840, + "created": 1676441674.899509, + "msecs": 899.5089530944824, + "relativeCreated": 71903.02419662476, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:34,601" + "asctime": "2023-02-15 07:14:34,899" }, { "name": "__unittest__", @@ -59307,18 +82122,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954654.6015866, - "msecs": 601.5865802764893, - "relativeCreated": 40497.8289604187, - "thread": 139894075555840, + "created": 1676441674.8996658, + "msecs": 899.6658325195312, + "relativeCreated": 71903.1810760498, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:34,601" + "asctime": "2023-02-15 07:14:34,899" } ], - "time_consumption": 9.322166442871094e-05 + "time_consumption": 0.00012302398681640625 }, { "name": "__tLogger__", @@ -59336,22 +82151,22 @@ "stack_info": null, "lineno": 94, "funcName": "__test_color_temp__", - "created": 1675954654.903883, - "msecs": 903.8829803466797, - "relativeCreated": 40800.12536048889, - "thread": 139894075555840, + "created": 1676441675.201397, + "msecs": 201.39694213867188, + "relativeCreated": 72204.91218566895, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:34,903", + "asctime": "2023-02-15 07:14:35,201", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -59363,22 +82178,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954654.6020005, - "msecs": 602.0004749298096, - "relativeCreated": 40498.24285507202, - "thread": 139894075555840, + "created": 1676441674.9002273, + "msecs": 900.2273082733154, + "relativeCreated": 71903.74255180359, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:34,602" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:34,900" }, { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -59390,22 +82205,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954654.6029603, - "msecs": 602.9603481292725, - "relativeCreated": 40499.202728271484, - "thread": 139894051313216, + "created": 1676441674.9014971, + "msecs": 901.4971256256104, + "relativeCreated": 71905.01236915588, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:34,602" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:34,901" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/color_temp", - "b'8.0'" + "videv/gfw/floor/main_light/color_temp", + "b'8'" ], "levelname": "DEBUG", "levelno": 10, @@ -59417,45 +82232,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954654.6052377, - "msecs": 605.2377223968506, - "relativeCreated": 40501.48010253906, - "thread": 139894051313216, + "created": 1676441674.9039185, + "msecs": 903.9185047149658, + "relativeCreated": 71907.43374824524, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:34,605" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954654.605849, - "msecs": 605.849027633667, - "relativeCreated": 40502.09140777588, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:34,605" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:34,903" } ], - "time_consumption": 0.2980339527130127 + "time_consumption": 0.29747843742370605 }, { "name": "__tLogger__", @@ -59474,15 +82262,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954654.9045208, - "msecs": 904.5207500457764, - "relativeCreated": 40800.76313018799, - "thread": 139894075555840, + "created": 1676441675.2022552, + "msecs": 202.2552490234375, + "relativeCreated": 72205.77049255371, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:34,904", + "asctime": "2023-02-15 07:14:35,202", "moduleLogger": [ { "name": "__unittest__", @@ -59502,15 +82290,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954654.9042847, - "msecs": 904.2847156524658, - "relativeCreated": 40800.52709579468, - "thread": 139894075555840, + "created": 1676441675.2019475, + "msecs": 201.94745063781738, + "relativeCreated": 72205.46269416809, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:34,904" + "asctime": "2023-02-15 07:14:35,201" }, { "name": "__unittest__", @@ -59531,18 +82319,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954654.9044173, - "msecs": 904.4172763824463, - "relativeCreated": 40800.65965652466, - "thread": 139894075555840, + "created": 1676441675.2021172, + "msecs": 202.1172046661377, + "relativeCreated": 72205.63244819641, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:34,904" + "asctime": "2023-02-15 07:14:35,202" } ], - "time_consumption": 0.00010347366333007812 + "time_consumption": 0.0001380443572998047 }, { "name": "__tLogger__", @@ -59561,15 +82349,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954654.904873, - "msecs": 904.8728942871094, - "relativeCreated": 40801.11527442932, - "thread": 139894075555840, + "created": 1676441675.2027879, + "msecs": 202.7878761291504, + "relativeCreated": 72206.30311965942, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:34,904", + "asctime": "2023-02-15 07:14:35,202", "moduleLogger": [ { "name": "__unittest__", @@ -59589,15 +82377,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954654.9046896, - "msecs": 904.6895503997803, - "relativeCreated": 40800.93193054199, - "thread": 139894075555840, + "created": 1676441675.2025352, + "msecs": 202.53515243530273, + "relativeCreated": 72206.05039596558, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:34,904" + "asctime": "2023-02-15 07:14:35,202" }, { "name": "__unittest__", @@ -59618,18 +82406,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954654.9047859, - "msecs": 904.7858715057373, - "relativeCreated": 40801.02825164795, - "thread": 139894075555840, + "created": 1676441675.2026713, + "msecs": 202.67128944396973, + "relativeCreated": 72206.18653297424, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:34,904" + "asctime": "2023-02-15 07:14:35,202" } ], - "time_consumption": 8.702278137207031e-05 + "time_consumption": 0.00011658668518066406 }, { "name": "__tLogger__", @@ -59647,21 +82435,21 @@ "stack_info": null, "lineno": 100, "funcName": "__test_color_temp__", - "created": 1675954655.2071211, - "msecs": 207.1211338043213, - "relativeCreated": 41103.36351394653, - "thread": 139894075555840, + "created": 1676441675.504343, + "msecs": 504.34303283691406, + "relativeCreated": 72507.85827636719, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:35,207", + "asctime": "2023-02-15 07:14:35,504", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/color_temp", + "videv/gfw/floor/main_light/color_temp/set", "5" ], "levelname": "DEBUG", @@ -59674,21 +82462,129 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954654.905195, - "msecs": 905.1949977874756, - "relativeCreated": 40801.43737792969, - "thread": 139894075555840, + "created": 1676441675.2031767, + "msecs": 203.17673683166504, + "relativeCreated": 72206.69198036194, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:34,905" + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:35,203" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/color_temp", + "zigbee/gfw/floor/main_light_1/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441675.2069905, + "msecs": 206.99048042297363, + "relativeCreated": 72210.50572395325, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:35,206" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441675.2074692, + "msecs": 207.46922492980957, + "relativeCreated": 72210.98446846008, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:35,207" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441675.208364, + "msecs": 208.36400985717773, + "relativeCreated": 72211.87925338745, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:35,208" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441675.2095277, + "msecs": 209.52773094177246, + "relativeCreated": 72213.04297447205, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:35,209" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/color_temp", "b'5'" ], "levelname": "DEBUG", @@ -59701,153 +82597,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954654.9062855, - "msecs": 906.2855243682861, - "relativeCreated": 40802.5279045105, - "thread": 139894051313216, + "created": 1676441675.2546413, + "msecs": 254.64129447937012, + "relativeCreated": 72258.15653800964, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:34,906" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954654.907964, - "msecs": 907.9639911651611, - "relativeCreated": 40804.20637130737, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:34,907" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954654.908434, - "msecs": 908.4339141845703, - "relativeCreated": 40804.67629432678, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:34,908" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954654.9094582, - "msecs": 909.4581604003906, - "relativeCreated": 40805.7005405426, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:34,909" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954654.9535675, - "msecs": 953.5675048828125, - "relativeCreated": 40849.809885025024, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:34,953" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954654.9542112, - "msecs": 954.2112350463867, - "relativeCreated": 40850.4536151886, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:34,954" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:35,254" } ], - "time_consumption": 0.25290989875793457 + "time_consumption": 0.24970173835754395 }, { "name": "__tLogger__", @@ -59866,15 +82627,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954655.2076976, - "msecs": 207.69762992858887, - "relativeCreated": 41103.9400100708, - "thread": 139894075555840, + "created": 1676441675.5051877, + "msecs": 505.1877498626709, + "relativeCreated": 72508.70299339294, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:35,207", + "asctime": "2023-02-15 07:14:35,505", "moduleLogger": [ { "name": "__unittest__", @@ -59894,15 +82655,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954655.2074883, - "msecs": 207.4882984161377, - "relativeCreated": 41103.73067855835, - "thread": 139894075555840, + "created": 1676441675.5048375, + "msecs": 504.8375129699707, + "relativeCreated": 72508.35275650024, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:35,207" + "asctime": "2023-02-15 07:14:35,504" }, { "name": "__unittest__", @@ -59923,18 +82684,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954655.2076054, - "msecs": 207.60536193847656, - "relativeCreated": 41103.84774208069, - "thread": 139894075555840, + "created": 1676441675.5050483, + "msecs": 505.0482749938965, + "relativeCreated": 72508.56351852417, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:35,207" + "asctime": "2023-02-15 07:14:35,505" } ], - "time_consumption": 9.226799011230469e-05 + "time_consumption": 0.00013947486877441406 }, { "name": "__tLogger__", @@ -59953,15 +82714,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954655.2080593, - "msecs": 208.05931091308594, - "relativeCreated": 41104.3016910553, - "thread": 139894075555840, + "created": 1676441675.5056624, + "msecs": 505.6624412536621, + "relativeCreated": 72509.17768478394, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:35,208", + "asctime": "2023-02-15 07:14:35,505", "moduleLogger": [ { "name": "__unittest__", @@ -59981,15 +82742,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954655.2078779, - "msecs": 207.87787437438965, - "relativeCreated": 41104.1202545166, - "thread": 139894075555840, + "created": 1676441675.505426, + "msecs": 505.42593002319336, + "relativeCreated": 72508.94117355347, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:35,207" + "asctime": "2023-02-15 07:14:35,505" }, { "name": "__unittest__", @@ -60010,330 +82771,303 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954655.2079744, - "msecs": 207.97443389892578, - "relativeCreated": 41104.21681404114, - "thread": 139894075555840, + "created": 1676441675.5055509, + "msecs": 505.5508613586426, + "relativeCreated": 72509.06610488892, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:35,207" - } - ], - "time_consumption": 8.487701416015625e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954655.5097334, - "msecs": 509.7334384918213, - "relativeCreated": 41405.97581863403, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:35,509", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954655.2088177, - "msecs": 208.817720413208, - "relativeCreated": 41105.06010055542, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:35,208" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954655.2098067, - "msecs": 209.8066806793213, - "relativeCreated": 41106.04906082153, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:35,209" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954655.2120283, - "msecs": 212.02826499938965, - "relativeCreated": 41108.2706451416, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:35,212" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954655.2126195, - "msecs": 212.61954307556152, - "relativeCreated": 41108.86192321777, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:35,212" - } - ], - "time_consumption": 0.29711389541625977 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954655.5103092, - "msecs": 510.30921936035156, - "relativeCreated": 41406.55159950256, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:35,510", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954655.5101013, - "msecs": 510.101318359375, - "relativeCreated": 41406.34369850159, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:35,510" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954655.5102177, - "msecs": 510.21766662597656, - "relativeCreated": 41406.46004676819, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:35,510" - } - ], - "time_consumption": 9.1552734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954655.5106542, - "msecs": 510.6542110443115, - "relativeCreated": 41406.89659118652, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:35,510", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954655.5104558, - "msecs": 510.455846786499, - "relativeCreated": 41406.69822692871, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:35,510" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954655.5105426, - "msecs": 510.542631149292, - "relativeCreated": 41406.785011291504, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:35,510" + "asctime": "2023-02-15 07:14:35,505" } ], "time_consumption": 0.00011157989501953125 }, + { + "name": "__tLogger__", + "msg": "Changing light device color temperature to '%d'", + "args": [ + 5 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", + "filename": "light.py", + "module": "light", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 94, + "funcName": "__test_color_temp__", + "created": 1676441675.806949, + "msecs": 806.9489002227783, + "relativeCreated": 72810.46414375305, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing light device color temperature to '5'", + "asctime": "2023-02-15 07:14:35,806", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441675.506078, + "msecs": 506.07800483703613, + "relativeCreated": 72509.59324836731, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}", + "asctime": "2023-02-15 07:14:35,506" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441675.5074074, + "msecs": 507.40742683410645, + "relativeCreated": 72510.92267036438, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0}'", + "asctime": "2023-02-15 07:14:35,507" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/color_temp", + "b'8'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441675.509822, + "msecs": 509.82189178466797, + "relativeCreated": 72513.33713531494, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8'", + "asctime": "2023-02-15 07:14:35,509" + } + ], + "time_consumption": 0.29712700843811035 + }, + { + "name": "__tLogger__", + "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441675.8071709, + "msecs": 807.1708679199219, + "relativeCreated": 72810.6861114502, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device color temperature is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:35,807", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device color temperature", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441675.8070977, + "msecs": 807.0976734161377, + "relativeCreated": 72810.61291694641, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device color temperature): 8 ()", + "asctime": "2023-02-15 07:14:35,807" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device color temperature", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441675.807143, + "msecs": 807.142972946167, + "relativeCreated": 72810.65821647644, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device color temperature): result = 8 ()", + "asctime": "2023-02-15 07:14:35,807" + } + ], + "time_consumption": 2.7894973754882812e-05 + }, + { + "name": "__tLogger__", + "msg": "Light device brightness is correct (Content %s and Type is %s).", + "args": [ + "8", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441675.8072617, + "msecs": 807.2617053985596, + "relativeCreated": 72810.77694892883, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Light device brightness is correct (Content 8 and Type is ).", + "asctime": "2023-02-15 07:14:35,807", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Light device brightness", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441675.8072152, + "msecs": 807.2152137756348, + "relativeCreated": 72810.73045730591, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Light device brightness): 8 ()", + "asctime": "2023-02-15 07:14:35,807" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Light device brightness", + "=", + "8", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441675.8072398, + "msecs": 807.2397708892822, + "relativeCreated": 72810.75501441956, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Light device brightness): result = 8 ()", + "asctime": "2023-02-15 07:14:35,807" + } + ], + "time_consumption": 2.193450927734375e-05 + }, { "name": "__tLogger__", "msg": "Changing virtual device color temperature to '%d'", @@ -60350,21 +83084,21 @@ "stack_info": null, "lineno": 100, "funcName": "__test_color_temp__", - "created": 1675954655.812786, - "msecs": 812.7861022949219, - "relativeCreated": 41709.028482437134, - "thread": 139894075555840, + "created": 1676441676.1081855, + "msecs": 108.1855297088623, + "relativeCreated": 73111.70077323914, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:35,812", + "asctime": "2023-02-15 07:14:36,108", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/color_temp", + "videv/gfw/floor/main_light/color_temp/set", "5" ], "levelname": "DEBUG", @@ -60377,21 +83111,129 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954655.510908, - "msecs": 510.9078884124756, - "relativeCreated": 41407.15026855469, - "thread": 139894075555840, + "created": 1676441675.807336, + "msecs": 807.3360919952393, + "relativeCreated": 72810.85133552551, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/julian/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:35,510" + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:35,807" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/color_temp", + "zigbee/gfw/floor/main_light_1/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441675.8084443, + "msecs": 808.4442615509033, + "relativeCreated": 72811.95950508118, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:35,808" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441675.8085744, + "msecs": 808.5744380950928, + "relativeCreated": 72812.08968162537, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:35,808" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441675.8087811, + "msecs": 808.7811470031738, + "relativeCreated": 72812.29639053345, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:35,808" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441675.8090842, + "msecs": 809.0841770172119, + "relativeCreated": 72812.59942054749, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:35,809" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/color_temp", "b'5'" ], "levelname": "DEBUG", @@ -60404,153 +83246,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954655.5118806, - "msecs": 511.88063621520996, - "relativeCreated": 41408.12301635742, - "thread": 139894051313216, + "created": 1676441675.8518012, + "msecs": 851.8011569976807, + "relativeCreated": 72855.31640052795, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:35,511" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954655.5134518, - "msecs": 513.4518146514893, - "relativeCreated": 41409.6941947937, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:35,513" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954655.5138466, - "msecs": 513.8466358184814, - "relativeCreated": 41410.08901596069, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:35,513" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954655.514752, - "msecs": 514.7519111633301, - "relativeCreated": 41410.99429130554, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:35,514" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954655.5576766, - "msecs": 557.6765537261963, - "relativeCreated": 41453.91893386841, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:35,557" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954655.5583644, - "msecs": 558.3643913269043, - "relativeCreated": 41454.606771469116, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:35,558" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:35,851" } ], - "time_consumption": 0.2544217109680176 + "time_consumption": 0.25638437271118164 }, { "name": "__tLogger__", @@ -60569,15 +83276,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954655.8134644, - "msecs": 813.4644031524658, - "relativeCreated": 41709.70678329468, - "thread": 139894075555840, + "created": 1676441676.1089547, + "msecs": 108.95466804504395, + "relativeCreated": 73112.46991157532, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:35,813", + "asctime": "2023-02-15 07:14:36,108", "moduleLogger": [ { "name": "__unittest__", @@ -60597,15 +83304,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954655.8132162, - "msecs": 813.2162094116211, - "relativeCreated": 41709.45858955383, - "thread": 139894075555840, + "created": 1676441676.1086683, + "msecs": 108.66832733154297, + "relativeCreated": 73112.18357086182, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:35,813" + "asctime": "2023-02-15 07:14:36,108" }, { "name": "__unittest__", @@ -60626,18 +83333,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954655.813339, - "msecs": 813.3389949798584, - "relativeCreated": 41709.58137512207, - "thread": 139894075555840, + "created": 1676441676.1088204, + "msecs": 108.82043838500977, + "relativeCreated": 73112.33568191528, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:35,813" + "asctime": "2023-02-15 07:14:36,108" } ], - "time_consumption": 0.00012540817260742188 + "time_consumption": 0.0001342296600341797 }, { "name": "__tLogger__", @@ -60653,21 +83360,21 @@ "stack_info": null, "lineno": 105, "funcName": "__test_color_temp__", - "created": 1675954656.1155834, - "msecs": 115.58341979980469, - "relativeCreated": 42011.82579994202, - "thread": 139894075555840, + "created": 1676441676.4105265, + "msecs": 410.5265140533447, + "relativeCreated": 73414.04175758362, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:36,115", + "asctime": "2023-02-15 07:14:36,410", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "off" ], "levelname": "DEBUG", @@ -60680,21 +83387,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954655.8136852, - "msecs": 813.6851787567139, - "relativeCreated": 41709.927558898926, - "thread": 139894075555840, + "created": 1676441676.1092474, + "msecs": 109.24744606018066, + "relativeCreated": 73112.76268959045, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:35,813" + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:36,109" }, { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "b'off'" ], "levelname": "DEBUG", @@ -60707,21 +83414,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954655.814682, - "msecs": 814.6820068359375, - "relativeCreated": 41710.92438697815, - "thread": 139894051313216, + "created": 1676441676.1111794, + "msecs": 111.17935180664062, + "relativeCreated": 73114.69459533691, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:35,814" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:36,111" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/state", + "videv/gfw/floor/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -60734,54 +83441,27 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954655.816591, - "msecs": 816.5910243988037, - "relativeCreated": 41712.833404541016, - "thread": 139894051313216, + "created": 1676441676.1129858, + "msecs": 112.98584938049316, + "relativeCreated": 73116.50109291077, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:35,816" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954655.817197, - "msecs": 817.1970844268799, - "relativeCreated": 41713.43946456909, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:35,817" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:36,112" } ], - "time_consumption": 0.2983863353729248 + "time_consumption": 0.29754066467285156 } ], - "time_consumption": 1.8172156810760498, - "time_start": "2023-02-09 15:57:34,298", - "time_finished": "2023-02-09 15:57:36,115" + "time_consumption": 1.8129618167877197, + "time_start": "2023-02-15 07:14:34,597", + "time_finished": "2023-02-15 07:14:36,410" }, - "Power On/ Off test for device and virtual device: shellies/ffw/julian/main_light": { + "Power On/ Off test for device and virtual device: shellies/gfw/floor/main_light": { "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: shellies/ffw/julian/main_light", + "msg": "Power On/ Off test for device and virtual device: shellies/gfw/floor/main_light", "args": null, "levelname": "INFO", "levelno": 20, @@ -60793,15 +83473,15 @@ "stack_info": null, "lineno": 27, "funcName": "test_power_on_off", - "created": 1675954656.116253, - "msecs": 116.25289916992188, - "relativeCreated": 42012.495279312134, - "thread": 139894075555840, + "created": 1676441676.4112914, + "msecs": 411.29136085510254, + "relativeCreated": 73414.80660438538, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: shellies/ffw/julian/main_light", - "asctime": "2023-02-09 15:57:36,116", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: shellies/gfw/floor/main_light", + "asctime": "2023-02-15 07:14:36,411", "moduleLogger": [], "testcaseLogger": [ { @@ -60821,15 +83501,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954656.1167045, - "msecs": 116.70446395874023, - "relativeCreated": 42012.94684410095, - "thread": 139894075555840, + "created": 1676441676.4118311, + "msecs": 411.8311405181885, + "relativeCreated": 73415.34638404846, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:36,116", + "asctime": "2023-02-15 07:14:36,411", "moduleLogger": [ { "name": "__unittest__", @@ -60849,15 +83529,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954656.116495, - "msecs": 116.49489402770996, - "relativeCreated": 42012.73727416992, - "thread": 139894075555840, + "created": 1676441676.4115677, + "msecs": 411.56768798828125, + "relativeCreated": 73415.08293151855, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:36,116" + "asctime": "2023-02-15 07:14:36,411" }, { "name": "__unittest__", @@ -60878,18 +83558,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954656.1166103, - "msecs": 116.61028861999512, - "relativeCreated": 42012.85266876221, - "thread": 139894075555840, + "created": 1676441676.4117112, + "msecs": 411.7112159729004, + "relativeCreated": 73415.22645950317, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:36,116" + "asctime": "2023-02-15 07:14:36,411" } ], - "time_consumption": 9.417533874511719e-05 + "time_consumption": 0.00011992454528808594 }, { "name": "__tLogger__", @@ -60907,21 +83587,21 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954656.4181414, - "msecs": 418.14136505126953, - "relativeCreated": 42314.38374519348, - "thread": 139894075555840, + "created": 1676441676.713274, + "msecs": 713.2740020751953, + "relativeCreated": 73716.78924560547, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:36,418", + "asctime": "2023-02-15 07:14:36,713", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "on" ], "levelname": "DEBUG", @@ -60934,48 +83614,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954656.1169088, - "msecs": 116.90878868103027, - "relativeCreated": 42013.15116882324, - "thread": 139894075555840, + "created": 1676441676.4121017, + "msecs": 412.10174560546875, + "relativeCreated": 73415.61698913574, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:36,116" + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:36,412" }, { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954656.1174264, - "msecs": 117.42639541625977, - "relativeCreated": 42013.66877555847, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:36,117" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "b'on'" ], "levelname": "DEBUG", @@ -60988,22 +83641,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954656.1182766, - "msecs": 118.27659606933594, - "relativeCreated": 42014.51897621155, - "thread": 139894051313216, + "created": 1676441676.4134448, + "msecs": 413.44475746154785, + "relativeCreated": 73416.96000099182, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:36,118" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:36,413" }, { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "zigbee/gfw/floor/main_light_1/get", + "b'{\"state\": \"\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -61015,21 +83668,102 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954656.1188688, - "msecs": 118.86882781982422, - "relativeCreated": 42015.111207962036, - "thread": 139894051313216, + "created": 1676441676.4164963, + "msecs": 416.49627685546875, + "relativeCreated": 73420.01152038574, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:36,118" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:36,416" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441676.4169118, + "msecs": 416.9118404388428, + "relativeCreated": 73420.42708396912, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:36,416" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/state", + "zigbee/gfw/floor/main_light_2/get", + "b'{\"state\": \"\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441676.4177728, + "msecs": 417.7727699279785, + "relativeCreated": 73421.28801345825, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:36,417" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441676.4181218, + "msecs": 418.1218147277832, + "relativeCreated": 73421.63705825806, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:36,418" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", "b'true'" ], "levelname": "DEBUG", @@ -61042,22 +83776,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954656.161559, - "msecs": 161.5591049194336, - "relativeCreated": 42057.801485061646, - "thread": 139894051313216, + "created": 1676441676.4191117, + "msecs": 419.1117286682129, + "relativeCreated": 73422.62697219849, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:36,161" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:36,419" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -61069,18 +83803,45 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954656.1622417, - "msecs": 162.24169731140137, - "relativeCreated": 42058.48407745361, - "thread": 139894051313216, + "created": 1676441676.4198499, + "msecs": 419.8498725891113, + "relativeCreated": 73423.36511611938, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:36,162" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:36,419" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441676.4205334, + "msecs": 420.5334186553955, + "relativeCreated": 73424.04866218567, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:36,420" } ], - "time_consumption": 0.25589966773986816 + "time_consumption": 0.2927405834197998 }, { "name": "__tLogger__", @@ -61099,15 +83860,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954656.4187179, - "msecs": 418.7178611755371, - "relativeCreated": 42314.96024131775, - "thread": 139894075555840, + "created": 1676441676.7139118, + "msecs": 713.911771774292, + "relativeCreated": 73717.42701530457, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:36,418", + "asctime": "2023-02-15 07:14:36,713", "moduleLogger": [ { "name": "__unittest__", @@ -61127,15 +83888,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954656.4185076, - "msecs": 418.50757598876953, - "relativeCreated": 42314.74995613098, - "thread": 139894075555840, + "created": 1676441676.713674, + "msecs": 713.6740684509277, + "relativeCreated": 73717.1893119812, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:36,418" + "asctime": "2023-02-15 07:14:36,713" }, { "name": "__unittest__", @@ -61156,18 +83917,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954656.4186242, - "msecs": 418.6241626739502, - "relativeCreated": 42314.86654281616, - "thread": 139894075555840, + "created": 1676441676.713806, + "msecs": 713.8059139251709, + "relativeCreated": 73717.32115745544, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:36,418" + "asctime": "2023-02-15 07:14:36,713" } ], - "time_consumption": 9.369850158691406e-05 + "time_consumption": 0.00010585784912109375 }, { "name": "__tLogger__", @@ -61186,15 +83947,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954656.4190242, - "msecs": 419.0242290496826, - "relativeCreated": 42315.266609191895, - "thread": 139894075555840, + "created": 1676441676.714296, + "msecs": 714.2961025238037, + "relativeCreated": 73717.81134605408, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:36,419", + "asctime": "2023-02-15 07:14:36,714", "moduleLogger": [ { "name": "__unittest__", @@ -61214,15 +83975,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954656.418865, - "msecs": 418.8649654388428, - "relativeCreated": 42315.107345581055, - "thread": 139894075555840, + "created": 1676441676.714077, + "msecs": 714.0769958496094, + "relativeCreated": 73717.59223937988, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:36,418" + "asctime": "2023-02-15 07:14:36,714" }, { "name": "__unittest__", @@ -61243,776 +84004,19 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954656.418949, - "msecs": 418.9488887786865, - "relativeCreated": 42315.1912689209, - "thread": 139894075555840, + "created": 1676441676.7141716, + "msecs": 714.1716480255127, + "relativeCreated": 73717.68689155579, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:36,418" - } - ], - "time_consumption": 7.534027099609375e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954656.7202194, - "msecs": 720.2193737030029, - "relativeCreated": 42616.461753845215, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:36,720", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954656.419266, - "msecs": 419.2659854888916, - "relativeCreated": 42315.5083656311, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/julian/main_light/state and payload false", - "asctime": "2023-02-09 15:57:36,419" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954656.4202561, - "msecs": 420.2561378479004, - "relativeCreated": 42316.49851799011, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:36,420" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/julian/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954656.421805, - "msecs": 421.80490493774414, - "relativeCreated": 42318.047285079956, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:36,421" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/julian/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954656.4221458, - "msecs": 422.1458435058594, - "relativeCreated": 42318.38822364807, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:36,422" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/julian/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954656.4230797, - "msecs": 423.0797290802002, - "relativeCreated": 42319.32210922241, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:36,423" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954656.4673653, - "msecs": 467.3652648925781, - "relativeCreated": 42363.60764503479, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:36,467" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954656.4682314, - "msecs": 468.2314395904541, - "relativeCreated": 42364.473819732666, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:36,468" - } - ], - "time_consumption": 0.25198793411254883 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954656.7208252, - "msecs": 720.8251953125, - "relativeCreated": 42617.06757545471, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:36,720", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954656.7205865, - "msecs": 720.5865383148193, - "relativeCreated": 42616.82891845703, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:36,720" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954656.7207062, - "msecs": 720.7062244415283, - "relativeCreated": 42616.94860458374, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:36,720" - } - ], - "time_consumption": 0.00011897087097167969 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954656.7212002, - "msecs": 721.2002277374268, - "relativeCreated": 42617.44260787964, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:36,721", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954656.7209773, - "msecs": 720.9773063659668, - "relativeCreated": 42617.21968650818, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:36,720" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954656.7211158, - "msecs": 721.1158275604248, - "relativeCreated": 42617.35820770264, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:36,721" - } - ], - "time_consumption": 8.440017700195312e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954657.0236878, - "msecs": 23.68783950805664, - "relativeCreated": 42919.93021965027, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:37,023", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/julian/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954656.72141, - "msecs": 721.4100360870361, - "relativeCreated": 42617.65241622925, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:36,721" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954656.7219055, - "msecs": 721.9054698944092, - "relativeCreated": 42618.14785003662, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/julian/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:36,721" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/julian/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954656.7227697, - "msecs": 722.7697372436523, - "relativeCreated": 42619.012117385864, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:36,722" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.julian.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/julian/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954656.7239015, - "msecs": 723.9015102386475, - "relativeCreated": 42620.14389038086, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/julian/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:36,723" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954656.765668, - "msecs": 765.6679153442383, - "relativeCreated": 42661.91029548645, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:36,765" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954656.7663367, - "msecs": 766.3366794586182, - "relativeCreated": 42662.57905960083, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:36,766" - } - ], - "time_consumption": 0.2573511600494385 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954657.0243, - "msecs": 24.300098419189453, - "relativeCreated": 42920.5424785614, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:37,024", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954657.0240564, - "msecs": 24.056434631347656, - "relativeCreated": 42920.29881477356, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:37,024" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954657.0241756, - "msecs": 24.175643920898438, - "relativeCreated": 42920.41802406311, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:37,024" + "asctime": "2023-02-15 07:14:36,714" } ], "time_consumption": 0.00012445449829101562 }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954657.0246174, - "msecs": 24.617433547973633, - "relativeCreated": 42920.859813690186, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:37,024", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954657.0244558, - "msecs": 24.455785751342773, - "relativeCreated": 42920.698165893555, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:37,024" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954657.0245419, - "msecs": 24.541854858398438, - "relativeCreated": 42920.78423500061, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:37,024" - } - ], - "time_consumption": 7.557868957519531e-05 - }, { "name": "__tLogger__", "msg": "Changing virtual device state to '%s'", @@ -62029,21 +84033,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954657.32568, - "msecs": 325.6800174713135, - "relativeCreated": 43221.922397613525, - "thread": 139894075555840, + "created": 1676441677.0156717, + "msecs": 15.671730041503906, + "relativeCreated": 74019.18697357178, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:37,325", + "asctime": "2023-02-15 07:14:37,015", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/state", + "videv/gfw/floor/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -62056,48 +84060,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954657.024875, - "msecs": 24.87492561340332, - "relativeCreated": 42921.117305755615, - "thread": 139894075555840, + "created": 1676441676.7146156, + "msecs": 714.6155834197998, + "relativeCreated": 73718.13082695007, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/julian/main_light/state and payload false", - "asctime": "2023-02-09 15:57:37,024" + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:36,714" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0.command", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.0258079, - "msecs": 25.807857513427734, - "relativeCreated": 42922.05023765564, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:37,025" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/julian/main_light/relay/0/command", + "shellies/gfw/floor/main_light/relay/0/command", "b'off'" ], "levelname": "DEBUG", @@ -62110,21 +84087,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954657.0272288, - "msecs": 27.228832244873047, - "relativeCreated": 42923.471212387085, - "thread": 139894051313216, + "created": 1676441676.7174435, + "msecs": 717.4434661865234, + "relativeCreated": 73720.9587097168, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:37,027" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:36,717" }, { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "off" ], "levelname": "DEBUG", @@ -62137,21 +84114,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954657.0275686, - "msecs": 27.568578720092773, - "relativeCreated": 42923.810958862305, - "thread": 139894051313216, + "created": 1676441676.717792, + "msecs": 717.7920341491699, + "relativeCreated": 73721.30727767944, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/julian/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:37,027" + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:36,717" }, { - "name": "smart_brain.mqtt.shellies.ffw.julian.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffw/julian/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "b'off'" ], "levelname": "DEBUG", @@ -62164,21 +84141,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954657.0285223, - "msecs": 28.522253036499023, - "relativeCreated": 42924.76463317871, - "thread": 139894051313216, + "created": 1676441676.7190306, + "msecs": 719.0306186676025, + "relativeCreated": 73722.54586219788, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/julian/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:37,028" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:36,719" }, { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/julian/main_light/state", + "videv/gfw/floor/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -62191,45 +84168,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954657.0718534, - "msecs": 71.8533992767334, - "relativeCreated": 42968.095779418945, - "thread": 139894051313216, + "created": 1676441676.7631361, + "msecs": 763.1361484527588, + "relativeCreated": 73766.65139198303, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:37,071" - }, - { - "name": "smart_brain.mqtt.videv.ffw.julian.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/julian/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.0724936, - "msecs": 72.4935531616211, - "relativeCreated": 42968.73593330383, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:37,072" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:36,763" } ], - "time_consumption": 0.2531864643096924 + "time_consumption": 0.2525355815887451 }, { "name": "__tLogger__", @@ -62248,15 +84198,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954657.3262603, - "msecs": 326.2603282928467, - "relativeCreated": 43222.50270843506, - "thread": 139894075555840, + "created": 1676441677.0164037, + "msecs": 16.403675079345703, + "relativeCreated": 74019.91891860962, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:37,326", + "asctime": "2023-02-15 07:14:37,016", "moduleLogger": [ { "name": "__unittest__", @@ -62276,15 +84226,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954657.3260477, - "msecs": 326.0476589202881, - "relativeCreated": 43222.2900390625, - "thread": 139894075555840, + "created": 1676441677.0161278, + "msecs": 16.127824783325195, + "relativeCreated": 74019.6430683136, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:37,326" + "asctime": "2023-02-15 07:14:37,016" }, { "name": "__unittest__", @@ -62305,53 +84255,112 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954657.3261647, - "msecs": 326.16472244262695, - "relativeCreated": 43222.40710258484, - "thread": 139894075555840, + "created": 1676441677.0162814, + "msecs": 16.2813663482666, + "relativeCreated": 74019.79660987854, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:37,326" + "asctime": "2023-02-15 07:14:37,016" } ], - "time_consumption": 9.560585021972656e-05 - } - ], - "time_consumption": 1.2100074291229248, - "time_start": "2023-02-09 15:57:36,116", - "time_finished": "2023-02-09 15:57:37,326" - }, - "Brightness test for device and virtual device: zigbee/ffw/livingroom/main_light": { - "name": "__tLogger__", - "msg": "Brightness test for device and virtual device: zigbee/ffw/livingroom/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_brightness", - "created": 1675954657.3269413, - "msecs": 326.94125175476074, - "relativeCreated": 43223.18363189697, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness test for device and virtual device: zigbee/ffw/livingroom/main_light", - "asctime": "2023-02-09 15:57:37,326", - "moduleLogger": [], - "testcaseLogger": [ + "time_consumption": 0.00012230873107910156 + }, { "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], + "msg": "Virtual device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441677.0168536, + "msecs": 16.85357093811035, + "relativeCreated": 74020.36881446838, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:37,016", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Virtual device state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441677.0166001, + "msecs": 16.60013198852539, + "relativeCreated": 74020.1153755188, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:37,016" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Virtual device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441677.0167167, + "msecs": 16.716718673706055, + "relativeCreated": 74020.23196220398, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:37,016" + } + ], + "time_consumption": 0.00013685226440429688 + }, + { + "name": "__tLogger__", + "msg": "Changing switching device state to '%s'", + "args": [ + true + ], "levelname": "DEBUG", "levelno": 10, "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", @@ -62360,23 +84369,23 @@ "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 57, - "funcName": "__test_brightness__", - "created": 1675954657.629661, - "msecs": 629.6610832214355, - "relativeCreated": 43525.90346336365, - "thread": 139894075555840, + "lineno": 36, + "funcName": "__test_power_on_off__", + "created": 1676441677.318393, + "msecs": 318.3929920196533, + "relativeCreated": 74321.90823554993, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:37,629", + "process": 509276, + "message": "Changing switching device state to 'True'", + "asctime": "2023-02-15 07:14:37,318", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffw/livingroom/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "on" ], "levelname": "DEBUG", @@ -62389,48 +84398,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954657.3272767, - "msecs": 327.27670669555664, - "relativeCreated": 43223.51908683777, - "thread": 139894075555840, + "created": 1676441677.017124, + "msecs": 17.123937606811523, + "relativeCreated": 74020.63918113708, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:37,327" + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:37,017" }, { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954657.3278747, - "msecs": 327.87466049194336, - "relativeCreated": 43224.117040634155, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:37,327" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffw/livingroom/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "b'on'" ], "levelname": "DEBUG", @@ -62443,22 +84425,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954657.3287373, - "msecs": 328.7372589111328, - "relativeCreated": 43224.979639053345, - "thread": 139894051313216, + "created": 1676441677.0185385, + "msecs": 18.538475036621094, + "relativeCreated": 74022.0537185669, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:37,328" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:37,018" }, { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "zigbee/gfw/floor/main_light_1/get", + "b'{\"state\": \"\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -62470,21 +84452,102 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954657.3293607, - "msecs": 329.3607234954834, - "relativeCreated": 43225.603103637695, - "thread": 139894051313216, + "created": 1676441677.0215814, + "msecs": 21.581411361694336, + "relativeCreated": 74025.09665489197, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:37,329" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:37,021" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441677.0220008, + "msecs": 22.000789642333984, + "relativeCreated": 74025.51603317261, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:37,022" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/state", + "zigbee/gfw/floor/main_light_2/get", + "b'{\"state\": \"\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441677.0228908, + "msecs": 22.890806198120117, + "relativeCreated": 74026.4060497284, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:37,022" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441677.0232463, + "msecs": 23.246288299560547, + "relativeCreated": 74026.76153182983, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:37,023" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", "b'true'" ], "levelname": "DEBUG", @@ -62497,22 +84560,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954657.3695412, - "msecs": 369.5411682128906, - "relativeCreated": 43265.7835483551, - "thread": 139894051313216, + "created": 1676441677.0242023, + "msecs": 24.202346801757812, + "relativeCreated": 74027.71759033203, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:37,369" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:37,024" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -62524,22 +84587,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954657.3701627, - "msecs": 370.1627254486084, - "relativeCreated": 43266.40510559082, - "thread": 139894051313216, + "created": 1676441677.0249577, + "msecs": 24.957656860351562, + "relativeCreated": 74028.47290039062, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:37,370" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:37,024" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'50.0'" + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -62551,106 +84614,25 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954657.3707075, - "msecs": 370.70751190185547, - "relativeCreated": 43266.94989204407, - "thread": 139894051313216, + "created": 1676441677.0256455, + "msecs": 25.64549446105957, + "relativeCreated": 74029.16073799133, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:37,370" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.371171, - "msecs": 371.1709976196289, - "relativeCreated": 43267.41337776184, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:37,371" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.3716297, - "msecs": 371.6297149658203, - "relativeCreated": 43267.87209510803, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:37,371" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.372121, - "msecs": 372.12109565734863, - "relativeCreated": 43268.36347579956, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:37,372" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:37,025" } ], - "time_consumption": 0.2575399875640869 + "time_consumption": 0.29274749755859375 }, { "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", + "msg": "Virtual device state is correct (Content %s and Type is %s).", "args": [ - "50", - "" + "True", + "" ], "levelname": "INFO", "levelno": 20, @@ -62662,23 +84644,23 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954657.6302376, - "msecs": 630.2375793457031, - "relativeCreated": 43526.479959487915, - "thread": 139894075555840, + "created": 1676441677.319229, + "msecs": 319.2288875579834, + "relativeCreated": 74322.74413108826, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:37,630", + "process": 509276, + "message": "Virtual device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:37,319", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Virtual device brightness", - "50", - "" + "Virtual device state", + "True", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -62690,24 +84672,24 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954657.630023, - "msecs": 630.0230026245117, - "relativeCreated": 43526.26538276672, - "thread": 139894075555840, + "created": 1676441677.318923, + "msecs": 318.9229965209961, + "relativeCreated": 74322.43824005127, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:37,630" + "process": 509276, + "message": "Result (Virtual device state): True ()", + "asctime": "2023-02-15 07:14:37,318" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Virtual device brightness", + "Virtual device state", "=", - "50", - "" + "True", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -62719,24 +84701,111 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954657.6301422, - "msecs": 630.1422119140625, - "relativeCreated": 43526.384592056274, - "thread": 139894075555840, + "created": 1676441677.319092, + "msecs": 319.0920352935791, + "relativeCreated": 74322.60727882385, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:37,630" + "process": 509276, + "message": "Expectation (Virtual device state): result = True ()", + "asctime": "2023-02-15 07:14:37,319" } ], - "time_consumption": 9.5367431640625e-05 + "time_consumption": 0.00013685226440429688 }, { "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", + "msg": "Switching device state is correct (Content %s and Type is %s).", "args": [ - 65 + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441677.3196423, + "msecs": 319.6423053741455, + "relativeCreated": 74323.15754890442, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:37,319", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Switching device state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441677.3194296, + "msecs": 319.4296360015869, + "relativeCreated": 74322.94487953186, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Switching device state): True ()", + "asctime": "2023-02-15 07:14:37,319" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441677.319541, + "msecs": 319.54097747802734, + "relativeCreated": 74323.0562210083, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = True ()", + "asctime": "2023-02-15 07:14:37,319" + } + ], + "time_consumption": 0.00010132789611816406 + }, + { + "name": "__tLogger__", + "msg": "Changing virtual device state to '%s'", + "args": [ + false ], "levelname": "DEBUG", "levelno": 10, @@ -62746,24 +84815,24 @@ "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954657.9314673, - "msecs": 931.4672946929932, - "relativeCreated": 43827.709674835205, - "thread": 139894075555840, + "lineno": 42, + "funcName": "__test_power_on_off__", + "created": 1676441677.621034, + "msecs": 621.0339069366455, + "relativeCreated": 74624.54915046692, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:37,931", + "process": 509276, + "message": "Changing virtual device state to 'False'", + "asctime": "2023-02-15 07:14:37,621", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" + "videv/gfw/floor/main_light/state/set", + "false" ], "levelname": "DEBUG", "levelno": 10, @@ -62775,1338 +84844,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954657.6305735, - "msecs": 630.5735111236572, - "relativeCreated": 43526.81589126587, - "thread": 139894075555840, + "created": 1676441677.3199205, + "msecs": 319.92053985595703, + "relativeCreated": 74323.43578338623, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:37,630" + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:37,319" }, { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0.command", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.631592, - "msecs": 631.5920352935791, - "relativeCreated": 43527.83441543579, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:37,631" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.633881, - "msecs": 633.8810920715332, - "relativeCreated": 43530.123472213745, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:37,633" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.6344767, - "msecs": 634.4766616821289, - "relativeCreated": 43530.71904182434, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:37,634" - } - ], - "time_consumption": 0.29699063301086426 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954657.9321084, - "msecs": 932.1084022521973, - "relativeCreated": 43828.35078239441, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:37,932", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954657.9318666, - "msecs": 931.8666458129883, - "relativeCreated": 43828.1090259552, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:37,931" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954657.9319997, - "msecs": 931.999683380127, - "relativeCreated": 43828.24206352234, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:37,931" - } - ], - "time_consumption": 0.0001087188720703125 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954657.932466, - "msecs": 932.4660301208496, - "relativeCreated": 43828.70841026306, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:37,932", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954657.932279, - "msecs": 932.279109954834, - "relativeCreated": 43828.521490097046, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:37,932" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954657.9323785, - "msecs": 932.3785305023193, - "relativeCreated": 43828.62091064453, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:37,932" - } - ], - "time_consumption": 8.749961853027344e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954658.2339947, - "msecs": 233.994722366333, - "relativeCreated": 44130.237102508545, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:38,233", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954657.9327807, - "msecs": 932.7807426452637, - "relativeCreated": 43829.023122787476, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:37,932" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.9339035, - "msecs": 933.9034557342529, - "relativeCreated": 43830.145835876465, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:37,933" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.9357293, - "msecs": 935.7292652130127, - "relativeCreated": 43831.971645355225, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:37,935" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954657.9361854, - "msecs": 936.185359954834, - "relativeCreated": 43832.427740097046, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:37,936" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.937219, - "msecs": 937.2189044952393, - "relativeCreated": 43833.46128463745, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:37,937" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.9801517, - "msecs": 980.1516532897949, - "relativeCreated": 43876.39403343201, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:37,980" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954657.9807987, - "msecs": 980.7987213134766, - "relativeCreated": 43877.04110145569, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:37,980" - } - ], - "time_consumption": 0.25319600105285645 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954658.2345746, - "msecs": 234.574556350708, - "relativeCreated": 44130.81693649292, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:38,234", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954658.23436, - "msecs": 234.3599796295166, - "relativeCreated": 44130.60235977173, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:38,234" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954658.2344794, - "msecs": 234.47942733764648, - "relativeCreated": 44130.72180747986, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:38,234" - } - ], - "time_consumption": 9.512901306152344e-05 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954658.234913, - "msecs": 234.91311073303223, - "relativeCreated": 44131.155490875244, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:38,234", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954658.2347236, - "msecs": 234.72356796264648, - "relativeCreated": 44130.96594810486, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:38,234" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954658.234809, - "msecs": 234.80892181396484, - "relativeCreated": 44131.05130195618, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:38,234" - } - ], - "time_consumption": 0.00010418891906738281 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954658.5360186, - "msecs": 536.0186100006104, - "relativeCreated": 44432.26099014282, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:38,536", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954658.2352183, - "msecs": 235.21828651428223, - "relativeCreated": 44131.460666656494, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:38,235" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954658.2362087, - "msecs": 236.20867729187012, - "relativeCreated": 44132.45105743408, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:38,236" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954658.2385008, - "msecs": 238.50083351135254, - "relativeCreated": 44134.743213653564, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:38,238" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954658.239118, - "msecs": 239.11809921264648, - "relativeCreated": 44135.36047935486, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:38,239" - } - ], - "time_consumption": 0.29690051078796387 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954658.5367303, - "msecs": 536.7302894592285, - "relativeCreated": 44432.97266960144, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:38,536", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954658.536499, - "msecs": 536.4990234375, - "relativeCreated": 44432.74140357971, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:38,536" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954658.5366323, - "msecs": 536.6322994232178, - "relativeCreated": 44432.87467956543, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:38,536" - } - ], - "time_consumption": 9.799003601074219e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954658.537103, - "msecs": 537.1029376983643, - "relativeCreated": 44433.345317840576, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:38,537", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954658.5368876, - "msecs": 536.8876457214355, - "relativeCreated": 44433.13002586365, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:38,536" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954658.536976, - "msecs": 536.9760990142822, - "relativeCreated": 44433.218479156494, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:38,536" - } - ], - "time_consumption": 0.00012683868408203125 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954658.838181, - "msecs": 838.1810188293457, - "relativeCreated": 44734.42339897156, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:38,838", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954658.5373645, - "msecs": 537.3644828796387, - "relativeCreated": 44433.60686302185, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/livingroom/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:38,537" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954658.5383599, - "msecs": 538.3598804473877, - "relativeCreated": 44434.6022605896, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:38,538" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954658.5400057, - "msecs": 540.0056838989258, - "relativeCreated": 44436.24806404114, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:38,540" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954658.5404186, - "msecs": 540.4186248779297, - "relativeCreated": 44436.66100502014, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:38,540" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954658.541326, - "msecs": 541.3260459899902, - "relativeCreated": 44437.5684261322, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:38,541" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954658.5840871, - "msecs": 584.0871334075928, - "relativeCreated": 44480.329513549805, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:38,584" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954658.5847366, - "msecs": 584.7365856170654, - "relativeCreated": 44480.97896575928, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:38,584" - } - ], - "time_consumption": 0.2534444332122803 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954658.8387892, - "msecs": 838.7892246246338, - "relativeCreated": 44735.031604766846, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:38,838", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954658.8385468, - "msecs": 838.5467529296875, - "relativeCreated": 44734.7891330719, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:38,838" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954658.838666, - "msecs": 838.6659622192383, - "relativeCreated": 44734.90834236145, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:38,838" - } - ], - "time_consumption": 0.0001232624053955078 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "__test_brightness__", - "created": 1675954659.1398425, - "msecs": 139.84251022338867, - "relativeCreated": 45036.0848903656, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:39,139", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954658.8390126, - "msecs": 839.012622833252, - "relativeCreated": 44735.255002975464, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:38,839" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0/command", "b'off'" ], "levelname": "DEBUG", @@ -64119,21 +84871,75 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954658.840032, - "msecs": 840.0321006774902, - "relativeCreated": 44736.2744808197, - "thread": 139894051313216, + "created": 1676441677.3230357, + "msecs": 323.03571701049805, + "relativeCreated": 74326.55096054077, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:38,840" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:37,323" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/gfw/floor/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441677.323447, + "msecs": 323.44698905944824, + "relativeCreated": 74326.96223258972, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:37,323" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/state", + "shellies/gfw/floor/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441677.3248432, + "msecs": 324.843168258667, + "relativeCreated": 74328.35841178894, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:37,324" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -64146,105 +84952,167 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954658.8419948, - "msecs": 841.9947624206543, - "relativeCreated": 44738.237142562866, - "thread": 139894051313216, + "created": 1676441677.3697157, + "msecs": 369.71569061279297, + "relativeCreated": 74373.23093414307, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:38,841" - }, + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:37,369" + } + ], + "time_consumption": 0.25131821632385254 + }, + { + "name": "__tLogger__", + "msg": "Switching device state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441677.621821, + "msecs": 621.8209266662598, + "relativeCreated": 74625.33617019653, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Switching device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:37,621", + "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "Switching device state", + "False", + "" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954658.8425846, - "msecs": 842.5846099853516, - "relativeCreated": 44738.82699012756, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441677.6215343, + "msecs": 621.5343475341797, + "relativeCreated": 74625.04959106445, + "thread": 140246908178432, + "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:38,842" + "process": 509276, + "message": "Result (Switching device state): False ()", + "asctime": "2023-02-15 07:14:37,621" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Switching device state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441677.6216996, + "msecs": 621.6995716094971, + "relativeCreated": 74625.21481513977, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Switching device state): result = False ()", + "asctime": "2023-02-15 07:14:37,621" } ], - "time_consumption": 0.2972579002380371 + "time_consumption": 0.00012135505676269531 } ], - "time_consumption": 1.812901258468628, - "time_start": "2023-02-09 15:57:37,326", - "time_finished": "2023-02-09 15:57:39,139" + "time_consumption": 1.2105295658111572, + "time_start": "2023-02-15 07:14:36,411", + "time_finished": "2023-02-15 07:14:37,621" }, - "Color temperature test for device and virtual device: zigbee/ffw/livingroom/main_light": { + "Brightness synchronisation test: videv/gfw/floor/main_light": { "name": "__tLogger__", - "msg": "Color temperature test for device and virtual device: zigbee/ffw/livingroom/main_light", + "msg": "Brightness synchronisation test: videv/gfw/floor/main_light", "args": null, "levelname": "INFO", "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 81, - "funcName": "test_color_temp", - "created": 1675954659.1404605, - "msecs": 140.46049118041992, - "relativeCreated": 45036.70287132263, - "thread": 139894075555840, + "lineno": 42, + "funcName": "test_brightness_sync", + "created": 1676441677.6223564, + "msecs": 622.3564147949219, + "relativeCreated": 74625.8716583252, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Color temperature test for device and virtual device: zigbee/ffw/livingroom/main_light", - "asctime": "2023-02-09 15:57:39,140", + "process": 509276, + "message": "Brightness synchronisation test: videv/gfw/floor/main_light", + "asctime": "2023-02-15 07:14:37,622", "moduleLogger": [], "testcaseLogger": [ { "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], + "msg": "Setting preconditions for master device '%s' (Power on)", + "args": [ + true + ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 88, - "funcName": "__test_color_temp__", - "created": 1675954659.44356, - "msecs": 443.5598850250244, - "relativeCreated": 45339.802265167236, - "thread": 139894075555840, + "lineno": 48, + "funcName": "__test_brightness_sync__", + "created": 1676441677.923926, + "msecs": 923.9261150360107, + "relativeCreated": 74927.44135856628, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:39,443", + "process": 509276, + "message": "Setting preconditions for master device 'True' (Power on)", + "asctime": "2023-02-15 07:14:37,923", "moduleLogger": [ { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/ffw/livingroom/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "on" ], "levelname": "DEBUG", @@ -64257,48 +85125,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954659.1407804, - "msecs": 140.78044891357422, - "relativeCreated": 45037.022829055786, - "thread": 139894075555840, + "created": 1676441677.622722, + "msecs": 622.7219104766846, + "relativeCreated": 74626.23715400696, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:39,140" + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:37,622" }, { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954659.141657, - "msecs": 141.65711402893066, - "relativeCreated": 45037.89949417114, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:39,141" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffw/livingroom/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "b'on'" ], "levelname": "DEBUG", @@ -64311,22 +85152,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954659.1421933, - "msecs": 142.19331741333008, - "relativeCreated": 45038.43569755554, - "thread": 139894051313216, + "created": 1676441677.6240633, + "msecs": 624.06325340271, + "relativeCreated": 74627.57849693298, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:39,142" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:37,624" }, { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" + "zigbee/gfw/floor/main_light_1/get", + "b'{\"state\": \"\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -64338,21 +85179,102 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954659.143154, - "msecs": 143.15390586853027, - "relativeCreated": 45039.39628601074, - "thread": 139894051313216, + "created": 1676441677.6270952, + "msecs": 627.0952224731445, + "relativeCreated": 74630.61046600342, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:39,143" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:37,627" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441677.627543, + "msecs": 627.5429725646973, + "relativeCreated": 74631.05821609497, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:37,627" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/state", + "zigbee/gfw/floor/main_light_2/get", + "b'{\"state\": \"\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441677.6284132, + "msecs": 628.413200378418, + "relativeCreated": 74631.92844390869, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:37,628" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441677.6287723, + "msecs": 628.7722587585449, + "relativeCreated": 74632.28750228882, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:37,628" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", "b'true'" ], "levelname": "DEBUG", @@ -64365,22 +85287,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954659.185573, - "msecs": 185.57310104370117, - "relativeCreated": 45081.81548118591, - "thread": 139894051313216, + "created": 1676441677.6297228, + "msecs": 629.7228336334229, + "relativeCreated": 74633.2380771637, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:39,185" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:37,629" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -64392,138 +85314,78 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954659.1862419, - "msecs": 186.24186515808105, - "relativeCreated": 45082.48424530029, - "thread": 139894051313216, + "created": 1676441677.630493, + "msecs": 630.4929256439209, + "relativeCreated": 74634.0081691742, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:39,186" - } - ], - "time_consumption": 0.25731801986694336 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954659.4441295, - "msecs": 444.12946701049805, - "relativeCreated": 45340.37184715271, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:39,444", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954659.4439113, - "msecs": 443.9113140106201, - "relativeCreated": 45340.15369415283, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:39,443" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:37,630" }, { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Received message with topic %s and payload %s", "args": [ - "Virtual device color temperature", - "=", - "5", - "" + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954659.444034, - "msecs": 444.0340995788574, - "relativeCreated": 45340.27647972107, - "thread": 139894075555840, - "threadName": "MainThread", + "lineno": 91, + "funcName": "__receive__", + "created": 1676441677.6312084, + "msecs": 631.2084197998047, + "relativeCreated": 74634.72366333008, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:39,444" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:37,631" } ], - "time_consumption": 9.5367431640625e-05 + "time_consumption": 0.29271769523620605 }, { "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", + "msg": "Changing master device brightness to '%d'", "args": [ - 5 + 35 ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954659.7452383, - "msecs": 745.2383041381836, - "relativeCreated": 45641.480684280396, - "thread": 139894075555840, + "lineno": 56, + "funcName": "__test_brightness_sync__", + "created": 1676441678.2255406, + "msecs": 225.5406379699707, + "relativeCreated": 75229.05588150024, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:39,745", + "process": 509276, + "message": "Changing master device brightness to '35'", + "asctime": "2023-02-15 07:14:38,225", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" + "videv/gfw/floor/main_light/brightness/set", + "35" ], "levelname": "DEBUG", "levelno": 10, @@ -64535,22 +85397,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954659.4444718, - "msecs": 444.4718360900879, - "relativeCreated": 45340.7142162323, - "thread": 139894075555840, + "created": 1676441677.9244297, + "msecs": 924.4296550750732, + "relativeCreated": 74927.94489860535, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:39,444" + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 35", + "asctime": "2023-02-15 07:14:37,924" }, { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" + "zigbee/gfw/floor/main_light_1/set", + "b'{\"brightness\": 90}'" ], "levelname": "DEBUG", "levelno": 10, @@ -64562,22 +85424,49 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954659.4454632, - "msecs": 445.4631805419922, - "relativeCreated": 45341.705560684204, - "thread": 139894051313216, + "created": 1676441677.927731, + "msecs": 927.7310371398926, + "relativeCreated": 74931.24628067017, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:39,445" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"brightness\": 90}'", + "asctime": "2023-02-15 07:14:37,927" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441677.9281478, + "msecs": 928.1477928161621, + "relativeCreated": 74931.66303634644, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:37,928" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/color_temp", - "b'8.0'" + "zigbee/gfw/floor/main_light_2/set", + "b'{\"brightness\": 90}'" ], "levelname": "DEBUG", "levelno": 10, @@ -64589,22 +85478,49 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954659.4477086, - "msecs": 447.7086067199707, - "relativeCreated": 45343.95098686218, - "thread": 139894051313216, + "created": 1676441677.9289305, + "msecs": 928.9305210113525, + "relativeCreated": 74932.44576454163, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:39,447" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"brightness\": 90}'", + "asctime": "2023-02-15 07:14:37,928" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441677.9292645, + "msecs": 929.2645454406738, + "relativeCreated": 74932.77978897095, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:37,929" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -64616,24 +85532,78 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954659.4483006, - "msecs": 448.3006000518799, - "relativeCreated": 45344.54298019409, - "thread": 139894051313216, + "created": 1676441677.9303048, + "msecs": 930.304765701294, + "relativeCreated": 74933.82000923157, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:39,448" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:37,930" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441677.9310033, + "msecs": 931.0033321380615, + "relativeCreated": 74934.51857566833, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:37,931" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness", + "b'35'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441677.9743276, + "msecs": 974.327564239502, + "relativeCreated": 74977.84280776978, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'35'", + "asctime": "2023-02-15 07:14:37,974" } ], - "time_consumption": 0.2969377040863037 + "time_consumption": 0.25121307373046875 }, { "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "msg": "Follower device (zigbee/gfw/floor/main_light_1) brightness is correct (Content %s and Type is %s).", "args": [ - "8", + "35", "" ], "levelname": "INFO", @@ -64646,22 +85616,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954659.7459142, - "msecs": 745.9142208099365, - "relativeCreated": 45642.15660095215, - "thread": 139894075555840, + "created": 1676441678.226335, + "msecs": 226.3350486755371, + "relativeCreated": 75229.85029220581, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:39,745", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_1) brightness is correct (Content 35 and Type is ).", + "asctime": "2023-02-15 07:14:38,226", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Virtual device color temperature", - "8", + "Follower device (zigbee/gfw/floor/main_light_1) brightness", + "35", "" ], "levelname": "DEBUG", @@ -64674,23 +85644,23 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954659.7456594, - "msecs": 745.659351348877, - "relativeCreated": 45641.90173149109, - "thread": 139894075555840, + "created": 1676441678.2260153, + "msecs": 226.0153293609619, + "relativeCreated": 75229.53057289124, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:39,745" + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) brightness): 35 ()", + "asctime": "2023-02-15 07:14:38,226" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Virtual device color temperature", + "Follower device (zigbee/gfw/floor/main_light_1) brightness", "=", - "8", + "35", "" ], "levelname": "DEBUG", @@ -64703,24 +85673,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954659.7458177, - "msecs": 745.8176612854004, - "relativeCreated": 45642.06004142761, - "thread": 139894075555840, + "created": 1676441678.2261739, + "msecs": 226.17387771606445, + "relativeCreated": 75229.68912124634, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:39,745" + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) brightness): result = 35 ()", + "asctime": "2023-02-15 07:14:38,226" } ], - "time_consumption": 9.655952453613281e-05 + "time_consumption": 0.00016117095947265625 }, { "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", + "msg": "Follower device (zigbee/gfw/floor/main_light_2) brightness is correct (Content %s and Type is %s).", "args": [ - "8", + "35", "" ], "levelname": "INFO", @@ -64733,22 +85703,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954659.7462525, - "msecs": 746.2525367736816, - "relativeCreated": 45642.49491691589, - "thread": 139894075555840, + "created": 1676441678.2268002, + "msecs": 226.80020332336426, + "relativeCreated": 75230.31544685364, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:39,746", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_2) brightness is correct (Content 35 and Type is ).", + "asctime": "2023-02-15 07:14:38,226", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Light device brightness", - "8", + "Follower device (zigbee/gfw/floor/main_light_2) brightness", + "35", "" ], "levelname": "DEBUG", @@ -64761,23 +85731,23 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954659.7460685, - "msecs": 746.0684776306152, - "relativeCreated": 45642.31085777283, - "thread": 139894075555840, + "created": 1676441678.226581, + "msecs": 226.58109664916992, + "relativeCreated": 75230.09634017944, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:39,746" + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) brightness): 35 ()", + "asctime": "2023-02-15 07:14:38,226" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Light device brightness", + "Follower device (zigbee/gfw/floor/main_light_2) brightness", "=", - "8", + "35", "" ], "levelname": "DEBUG", @@ -64790,50 +85760,1300 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954659.7461712, - "msecs": 746.171236038208, - "relativeCreated": 45642.41361618042, - "thread": 139894075555840, + "created": 1676441678.226699, + "msecs": 226.6991138458252, + "relativeCreated": 75230.2143573761, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:39,746" + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) brightness): result = 35 ()", + "asctime": "2023-02-15 07:14:38,226" } ], - "time_consumption": 8.130073547363281e-05 + "time_consumption": 0.0001010894775390625 }, { "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", + "msg": "Changing master device brightness to '%d'", + "args": [ + 50 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 56, + "funcName": "__test_brightness_sync__", + "created": 1676441678.528231, + "msecs": 528.2309055328369, + "relativeCreated": 75531.74614906311, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device brightness to '50'", + "asctime": "2023-02-15 07:14:38,528", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness/set", + "50" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441678.2271023, + "msecs": 227.10227966308594, + "relativeCreated": 75230.61752319336, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 50", + "asctime": "2023-02-15 07:14:38,227" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.2309077, + "msecs": 230.90767860412598, + "relativeCreated": 75234.4229221344, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:38,230" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441678.2313807, + "msecs": 231.38070106506348, + "relativeCreated": 75234.89594459534, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:38,231" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2/set", + "b'{\"brightness\": 128}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.2322743, + "msecs": 232.27429389953613, + "relativeCreated": 75235.78953742981, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"brightness\": 128}'", + "asctime": "2023-02-15 07:14:38,232" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441678.2326593, + "msecs": 232.65933990478516, + "relativeCreated": 75236.17458343506, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:38,232" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.2338533, + "msecs": 233.85334014892578, + "relativeCreated": 75237.3685836792, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:38,233" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.234668, + "msecs": 234.66801643371582, + "relativeCreated": 75238.18325996399, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:38,234" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/brightness", + "b'50'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.279541, + "msecs": 279.541015625, + "relativeCreated": 75283.05625915527, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50'", + "asctime": "2023-02-15 07:14:38,279" + } + ], + "time_consumption": 0.24868988990783691 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/gfw/floor/main_light_1) brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441678.528983, + "msecs": 528.9831161499023, + "relativeCreated": 75532.49835968018, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_1) brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:38,528", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_1) brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441678.528703, + "msecs": 528.702974319458, + "relativeCreated": 75532.21821784973, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) brightness): 50 ()", + "asctime": "2023-02-15 07:14:38,528" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_1) brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441678.5288577, + "msecs": 528.8577079772949, + "relativeCreated": 75532.37295150757, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:38,528" + } + ], + "time_consumption": 0.00012540817260742188 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/gfw/floor/main_light_2) brightness is correct (Content %s and Type is %s).", + "args": [ + "50", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441678.5293941, + "msecs": 529.3941497802734, + "relativeCreated": 75532.90939331055, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_2) brightness is correct (Content 50 and Type is ).", + "asctime": "2023-02-15 07:14:38,529", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_2) brightness", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441678.5291853, + "msecs": 529.1852951049805, + "relativeCreated": 75532.70053863525, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) brightness): 50 ()", + "asctime": "2023-02-15 07:14:38,529" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_2) brightness", + "=", + "50", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441678.529296, + "msecs": 529.2959213256836, + "relativeCreated": 75532.81116485596, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) brightness): result = 50 ()", + "asctime": "2023-02-15 07:14:38,529" + } + ], + "time_consumption": 9.822845458984375e-05 + }, + { + "name": "__tLogger__", + "msg": "Resetting preconditions for master device '%s' (Power off)", + "args": [ + false + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 64, + "funcName": "__test_brightness_sync__", + "created": 1676441678.8309102, + "msecs": 830.9102058410645, + "relativeCreated": 75834.42544937134, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Resetting preconditions for master device 'False' (Power off)", + "asctime": "2023-02-15 07:14:38,830", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/gfw/floor/main_light/relay/0", + "off" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441678.529664, + "msecs": 529.6640396118164, + "relativeCreated": 75533.17928314209, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:38,529" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/gfw/floor/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.5310483, + "msecs": 531.0482978820801, + "relativeCreated": 75534.56354141235, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:38,531" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", + "b'false'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.5334342, + "msecs": 533.4341526031494, + "relativeCreated": 75536.94939613342, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:38,533" + } + ], + "time_consumption": 0.29747605323791504 + } + ], + "time_consumption": 1.2085537910461426, + "time_start": "2023-02-15 07:14:37,622", + "time_finished": "2023-02-15 07:14:38,830" + }, + "Color temperature synchronisation test: videv/gfw/floor/main_light": { + "name": "__tLogger__", + "msg": "Color temperature synchronisation test: videv/gfw/floor/main_light", + "args": null, + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 67, + "funcName": "test_color_temp_sync", + "created": 1676441678.8315444, + "msecs": 831.5443992614746, + "relativeCreated": 75835.05964279175, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Color temperature synchronisation test: videv/gfw/floor/main_light", + "asctime": "2023-02-15 07:14:38,831", + "moduleLogger": [], + "testcaseLogger": [ + { + "name": "__tLogger__", + "msg": "Setting preconditions for master device '%s' (Power on)", + "args": [ + true + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 73, + "funcName": "__test_color_temp_sync__", + "created": 1676441679.1330502, + "msecs": 133.05020332336426, + "relativeCreated": 76136.56544685364, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Setting preconditions for master device 'True' (Power on)", + "asctime": "2023-02-15 07:14:39,133", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "shellies/gfw/floor/main_light/relay/0", + "on" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441678.831841, + "msecs": 831.840991973877, + "relativeCreated": 75835.35623550415, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:38,831" + }, + { + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "msg": "Received message with topic %s and payload %s", + "args": [ + "shellies/gfw/floor/main_light/relay/0", + "b'on'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.8330214, + "msecs": 833.0214023590088, + "relativeCreated": 75836.53664588928, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:38,833" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1/get", + "b'{\"state\": \"\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.8362622, + "msecs": 836.2622261047363, + "relativeCreated": 75839.77746963501, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:38,836" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441678.8366206, + "msecs": 836.620569229126, + "relativeCreated": 75840.1358127594, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:38,836" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2/get", + "b'{\"state\": \"\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.8373563, + "msecs": 837.3563289642334, + "relativeCreated": 75840.8715724945, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:38,837" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441678.8376942, + "msecs": 837.6941680908203, + "relativeCreated": 75841.2094116211, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:38,837" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", + "b'true'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.8386228, + "msecs": 838.6228084564209, + "relativeCreated": 75842.1380519867, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:38,838" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.8392773, + "msecs": 839.2772674560547, + "relativeCreated": 75842.79251098633, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:38,839" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441678.8398983, + "msecs": 839.8983478546143, + "relativeCreated": 75843.41359138489, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:38,839" + } + ], + "time_consumption": 0.29315185546875 + }, + { + "name": "__tLogger__", + "msg": "Changing master device color temperature to '%d'", + "args": [ + 2 + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 81, + "funcName": "__test_color_temp_sync__", + "created": 1676441679.4346888, + "msecs": 434.6888065338135, + "relativeCreated": 76438.20405006409, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Changing master device color temperature to '2'", + "asctime": "2023-02-15 07:14:39,434", + "moduleLogger": [ + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/color_temp/set", + "2" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441679.1336305, + "msecs": 133.63051414489746, + "relativeCreated": 76137.14575767517, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 2", + "asctime": "2023-02-15 07:14:39,133" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441679.1374495, + "msecs": 137.4495029449463, + "relativeCreated": 76140.96474647522, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 291}'", + "asctime": "2023-02-15 07:14:39,137" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441679.1379302, + "msecs": 137.93015480041504, + "relativeCreated": 76141.44539833069, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}", + "asctime": "2023-02-15 07:14:39,137" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2/set", + "b'{\"color_temp\": 291}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441679.1388562, + "msecs": 138.8561725616455, + "relativeCreated": 76142.37141609192, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 291}'", + "asctime": "2023-02-15 07:14:39,138" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441679.1392493, + "msecs": 139.24932479858398, + "relativeCreated": 76142.76456832886, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}", + "asctime": "2023-02-15 07:14:39,139" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441679.1404583, + "msecs": 140.458345413208, + "relativeCreated": 76143.97358894348, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'", + "asctime": "2023-02-15 07:14:39,140" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441679.1412385, + "msecs": 141.23845100402832, + "relativeCreated": 76144.7536945343, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0}'", + "asctime": "2023-02-15 07:14:39,141" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/color_temp", + "b'2'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441679.1829967, + "msecs": 182.9967498779297, + "relativeCreated": 76186.5119934082, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'2'", + "asctime": "2023-02-15 07:14:39,182" + } + ], + "time_consumption": 0.2516920566558838 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/gfw/floor/main_light_1) color temperature is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441679.4354765, + "msecs": 435.47654151916504, + "relativeCreated": 76438.99178504944, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_1) color temperature is correct (Content 2 and Type is ).", + "asctime": "2023-02-15 07:14:39,435", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_1) color temperature", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441679.4351575, + "msecs": 435.15753746032715, + "relativeCreated": 76438.6727809906, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) color temperature): 2 ()", + "asctime": "2023-02-15 07:14:39,435" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_1) color temperature", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441679.4353511, + "msecs": 435.3511333465576, + "relativeCreated": 76438.86637687683, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) color temperature): result = 2 ()", + "asctime": "2023-02-15 07:14:39,435" + } + ], + "time_consumption": 0.00012540817260742188 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/gfw/floor/main_light_2) color temperature is correct (Content %s and Type is %s).", + "args": [ + "2", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441679.4359767, + "msecs": 435.9767436981201, + "relativeCreated": 76439.4919872284, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_2) color temperature is correct (Content 2 and Type is ).", + "asctime": "2023-02-15 07:14:39,435", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_2) color temperature", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441679.4356961, + "msecs": 435.6961250305176, + "relativeCreated": 76439.21136856079, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) color temperature): 2 ()", + "asctime": "2023-02-15 07:14:39,435" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_2) color temperature", + "=", + "2", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441679.4358637, + "msecs": 435.863733291626, + "relativeCreated": 76439.3789768219, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) color temperature): result = 2 ()", + "asctime": "2023-02-15 07:14:39,435" + } + ], + "time_consumption": 0.00011301040649414062 + }, + { + "name": "__tLogger__", + "msg": "Changing master device color temperature to '%d'", "args": [ 5 ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954660.0484042, - "msecs": 48.40421676635742, - "relativeCreated": 45944.64659690857, - "thread": 139894075555840, + "lineno": 81, + "funcName": "__test_color_temp_sync__", + "created": 1676441679.7374256, + "msecs": 737.4255657196045, + "relativeCreated": 76740.94080924988, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:40,048", + "process": 509276, + "message": "Changing master device color temperature to '5'", + "asctime": "2023-02-15 07:14:39,737", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/color_temp", + "videv/gfw/floor/main_light/color_temp/set", "5" ], "levelname": "DEBUG", @@ -64846,21 +87066,183 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954659.7465208, - "msecs": 746.5207576751709, - "relativeCreated": 45642.76313781738, - "thread": 139894075555840, + "created": 1676441679.4362965, + "msecs": 436.2964630126953, + "relativeCreated": 76439.81170654297, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:39,746" + "process": 509276, + "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 5", + "asctime": "2023-02-15 07:14:39,436" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/color_temp", + "zigbee/gfw/floor/main_light_1/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441679.4400544, + "msecs": 440.05441665649414, + "relativeCreated": 76443.56966018677, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:39,440" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441679.4405344, + "msecs": 440.5343532562256, + "relativeCreated": 76444.0495967865, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:39,440" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2/set", + "b'{\"color_temp\": 352}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441679.4414284, + "msecs": 441.42842292785645, + "relativeCreated": 76444.94366645813, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 352}'", + "asctime": "2023-02-15 07:14:39,441" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441679.4418395, + "msecs": 441.83945655822754, + "relativeCreated": 76445.3547000885, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:39,441" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441679.4429328, + "msecs": 442.9328441619873, + "relativeCreated": 76446.44808769226, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:39,442" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Received message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441679.4436712, + "msecs": 443.67122650146484, + "relativeCreated": 76447.18647003174, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:39,443" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/color_temp", "b'5'" ], "levelname": "DEBUG", @@ -64873,157 +87255,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954659.7474682, - "msecs": 747.4682331085205, - "relativeCreated": 45643.71061325073, - "thread": 139894051313216, + "created": 1676441679.4872732, + "msecs": 487.2732162475586, + "relativeCreated": 76490.78845977783, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:39,747" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954659.7491274, - "msecs": 749.1273880004883, - "relativeCreated": 45645.3697681427, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:39,749" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954659.749571, - "msecs": 749.5710849761963, - "relativeCreated": 45645.81346511841, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:39,749" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954659.7511103, - "msecs": 751.110315322876, - "relativeCreated": 45647.35269546509, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:39,751" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954659.7937121, - "msecs": 793.7121391296387, - "relativeCreated": 45689.95451927185, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:39,793" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954659.7943952, - "msecs": 794.3952083587646, - "relativeCreated": 45690.63758850098, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:39,794" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5'", + "asctime": "2023-02-15 07:14:39,487" } ], - "time_consumption": 0.2540090084075928 + "time_consumption": 0.2501523494720459 }, { "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", + "msg": "Follower device (zigbee/gfw/floor/main_light_1) color temperature is correct (Content %s and Type is %s).", "args": [ "5", "" @@ -65038,21 +87285,21 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954660.0490801, - "msecs": 49.08013343811035, - "relativeCreated": 45945.32251358032, - "thread": 139894075555840, + "created": 1676441679.7382016, + "msecs": 738.2016181945801, + "relativeCreated": 76741.71686172485, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:40,049", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_1) color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:39,738", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Light device brightness", + "Follower device (zigbee/gfw/floor/main_light_1) color temperature", "5", "" ], @@ -65066,21 +87313,21 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954660.0488105, - "msecs": 48.810482025146484, - "relativeCreated": 45945.05286216736, - "thread": 139894075555840, + "created": 1676441679.73789, + "msecs": 737.8900051116943, + "relativeCreated": 76741.40524864197, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:40,048" + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) color temperature): 5 ()", + "asctime": "2023-02-15 07:14:39,737" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Light device brightness", + "Follower device (zigbee/gfw/floor/main_light_1) color temperature", "=", "5", "" @@ -65095,22 +87342,22 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954660.048947, - "msecs": 48.94709587097168, - "relativeCreated": 45945.18947601318, - "thread": 139894075555840, + "created": 1676441679.7380435, + "msecs": 738.0435466766357, + "relativeCreated": 76741.55879020691, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:40,048" + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:39,738" } ], - "time_consumption": 0.00013303756713867188 + "time_consumption": 0.00015807151794433594 }, { "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", + "msg": "Follower device (zigbee/gfw/floor/main_light_2) color temperature is correct (Content %s and Type is %s).", "args": [ "5", "" @@ -65125,21 +87372,21 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954660.049445, - "msecs": 49.44491386413574, - "relativeCreated": 45945.68729400635, - "thread": 139894075555840, + "created": 1676441679.7386742, + "msecs": 738.6741638183594, + "relativeCreated": 76742.18940734863, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:40,049", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_2) color temperature is correct (Content 5 and Type is ).", + "asctime": "2023-02-15 07:14:39,738", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Virtual device color temperature", + "Follower device (zigbee/gfw/floor/main_light_2) color temperature", "5", "" ], @@ -65153,21 +87400,21 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954660.0492582, - "msecs": 49.25823211669922, - "relativeCreated": 45945.50061225891, - "thread": 139894075555840, + "created": 1676441679.7384124, + "msecs": 738.4123802185059, + "relativeCreated": 76741.92762374878, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:40,049" + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) color temperature): 5 ()", + "asctime": "2023-02-15 07:14:39,738" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Virtual device color temperature", + "Follower device (zigbee/gfw/floor/main_light_2) color temperature", "=", "5", "" @@ -65182,664 +87429,50 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954660.0493562, - "msecs": 49.35622215270996, - "relativeCreated": 45945.59860229492, - "thread": 139894075555840, + "created": 1676441679.7385705, + "msecs": 738.5704517364502, + "relativeCreated": 76742.08569526672, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:40,049" + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) color temperature): result = 5 ()", + "asctime": "2023-02-15 07:14:39,738" } ], - "time_consumption": 8.869171142578125e-05 + "time_consumption": 0.00010371208190917969 }, { "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", + "msg": "Resetting preconditions for master device '%s' (Power off)", "args": [ - 5 + false ], "levelname": "DEBUG", "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", + "filename": "synchronisation.py", + "module": "synchronisation", "exc_info": null, "exc_text": null, "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954660.350735, - "msecs": 350.7349491119385, - "relativeCreated": 46246.97732925415, - "thread": 139894075555840, + "lineno": 89, + "funcName": "__test_color_temp_sync__", + "created": 1676441680.0401947, + "msecs": 40.19474983215332, + "relativeCreated": 77043.70999336243, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:40,350", + "process": 509276, + "message": "Resetting preconditions for master device 'False' (Power off)", + "asctime": "2023-02-15 07:14:40,040", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954660.0497906, - "msecs": 49.79062080383301, - "relativeCreated": 45946.033000946045, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:40,049" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.0508792, - "msecs": 50.87924003601074, - "relativeCreated": 45947.12162017822, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:40,050" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.0534532, - "msecs": 53.45320701599121, - "relativeCreated": 45949.6955871582, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:40,053" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.0540786, - "msecs": 54.07857894897461, - "relativeCreated": 45950.32095909119, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:40,054" - } - ], - "time_consumption": 0.29665637016296387 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954660.3512957, - "msecs": 351.29570960998535, - "relativeCreated": 46247.5380897522, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:40,351", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954660.351086, - "msecs": 351.085901260376, - "relativeCreated": 46247.32828140259, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:40,351" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954660.3512022, - "msecs": 351.20224952697754, - "relativeCreated": 46247.44462966919, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:40,351" - } - ], - "time_consumption": 9.34600830078125e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954660.351632, - "msecs": 351.63211822509766, - "relativeCreated": 46247.87449836731, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:40,351", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954660.3514678, - "msecs": 351.4678478240967, - "relativeCreated": 46247.71022796631, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:40,351" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954660.3515558, - "msecs": 351.55582427978516, - "relativeCreated": 46247.798204422, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:40,351" - } - ], - "time_consumption": 7.62939453125e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954660.6528194, - "msecs": 652.8193950653076, - "relativeCreated": 46549.06177520752, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:40,652", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954660.3518832, - "msecs": 351.8831729888916, - "relativeCreated": 46248.1255531311, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/livingroom/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:40,351" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.3528116, - "msecs": 352.8115749359131, - "relativeCreated": 46249.053955078125, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:40,352" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.354333, - "msecs": 354.33292388916016, - "relativeCreated": 46250.57530403137, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:40,354" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954660.3547368, - "msecs": 354.7368049621582, - "relativeCreated": 46250.97918510437, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:40,354" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.3556066, - "msecs": 355.6065559387207, - "relativeCreated": 46251.84893608093, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:40,355" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.4003549, - "msecs": 400.35486221313477, - "relativeCreated": 46296.59724235535, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:40,400" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.4010189, - "msecs": 401.0188579559326, - "relativeCreated": 46297.261238098145, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:40,401" - } - ], - "time_consumption": 0.251800537109375 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954660.653452, - "msecs": 653.4519195556641, - "relativeCreated": 46549.694299697876, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:40,653", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954660.6532238, - "msecs": 653.2237529754639, - "relativeCreated": 46549.466133117676, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:40,653" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954660.6533518, - "msecs": 653.3517837524414, - "relativeCreated": 46549.59416389465, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:40,653" - } - ], - "time_consumption": 0.00010013580322265625 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 105, - "funcName": "__test_color_temp__", - "created": 1675954660.9546642, - "msecs": 954.6642303466797, - "relativeCreated": 46850.90661048889, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:40,954", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "off" ], "levelname": "DEBUG", @@ -65852,21 +87485,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954660.653677, - "msecs": 653.6769866943359, - "relativeCreated": 46549.91936683655, - "thread": 139894075555840, + "created": 1676441679.7389512, + "msecs": 738.9512062072754, + "relativeCreated": 76742.46644973755, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:40,653" + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:39,738" }, { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/ffw/livingroom/main_light/relay/0", + "shellies/gfw/floor/main_light/relay/0", "b'off'" ], "levelname": "DEBUG", @@ -65879,21 +87512,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954660.6546857, - "msecs": 654.6857357025146, - "relativeCreated": 46550.92811584473, - "thread": 139894051313216, + "created": 1676441679.7402892, + "msecs": 740.2892112731934, + "relativeCreated": 76743.80445480347, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:40,654" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:39,740" }, { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/ffw/livingroom/main_light/state", + "videv/gfw/floor/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -65906,8368 +87539,27 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954660.6566057, - "msecs": 656.6057205200195, - "relativeCreated": 46552.84810066223, - "thread": 139894051313216, + "created": 1676441679.7427142, + "msecs": 742.7141666412354, + "relativeCreated": 76746.22941017151, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:40,656" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.6572106, - "msecs": 657.2105884552002, - "relativeCreated": 46553.45296859741, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:40,657" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:39,742" } ], - "time_consumption": 0.2974536418914795 + "time_consumption": 0.29748058319091797 } ], - "time_consumption": 1.8142037391662598, - "time_start": "2023-02-09 15:57:39,140", - "time_finished": "2023-02-09 15:57:40,954" + "time_consumption": 1.2086503505706787, + "time_start": "2023-02-15 07:14:38,831", + "time_finished": "2023-02-15 07:14:40,040" }, - "Power On/ Off test for device and virtual device: shellies/ffw/livingroom/main_light": { + "Power On/ Off synchronisation test: shellies/gfw/floor/main_light": { "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: shellies/ffw/livingroom/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954660.9553144, - "msecs": 955.3143978118896, - "relativeCreated": 46851.5567779541, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: shellies/ffw/livingroom/main_light", - "asctime": "2023-02-09 15:57:40,955", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954660.9557614, - "msecs": 955.7614326477051, - "relativeCreated": 46852.00381278992, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:40,955", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954660.955541, - "msecs": 955.5408954620361, - "relativeCreated": 46851.78327560425, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:40,955" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954660.9556568, - "msecs": 955.6567668914795, - "relativeCreated": 46851.89914703369, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:40,955" - } - ], - "time_consumption": 0.00010466575622558594 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954661.2582905, - "msecs": 258.29052925109863, - "relativeCreated": 47154.53290939331, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:41,258", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954660.955972, - "msecs": 955.9719562530518, - "relativeCreated": 46852.214336395264, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:40,955" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954660.956478, - "msecs": 956.4781188964844, - "relativeCreated": 46852.720499038696, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:40,956" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.9573689, - "msecs": 957.3688507080078, - "relativeCreated": 46853.61123085022, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:40,957" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954660.9579425, - "msecs": 957.9424858093262, - "relativeCreated": 46854.18486595154, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:40,957" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.0015364, - "msecs": 1.5363693237304688, - "relativeCreated": 46897.77874946594, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:41,001" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.0021844, - "msecs": 2.1843910217285156, - "relativeCreated": 46898.42677116394, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:41,002" - } - ], - "time_consumption": 0.2561061382293701 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954661.2588701, - "msecs": 258.87012481689453, - "relativeCreated": 47155.11250495911, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:41,258", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954661.2586532, - "msecs": 258.6531639099121, - "relativeCreated": 47154.895544052124, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:41,258" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954661.2587745, - "msecs": 258.7745189666748, - "relativeCreated": 47155.01689910889, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:41,258" - } - ], - "time_consumption": 9.560585021972656e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954661.2591848, - "msecs": 259.1848373413086, - "relativeCreated": 47155.42721748352, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:41,259", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954661.259019, - "msecs": 259.0188980102539, - "relativeCreated": 47155.261278152466, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:41,259" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954661.2591069, - "msecs": 259.1068744659424, - "relativeCreated": 47155.349254608154, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:41,259" - } - ], - "time_consumption": 7.796287536621094e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954661.5602477, - "msecs": 560.2476596832275, - "relativeCreated": 47456.49003982544, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:41,560", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954661.2594285, - "msecs": 259.4285011291504, - "relativeCreated": 47155.67088127136, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/livingroom/main_light/state and payload false", - "asctime": "2023-02-09 15:57:41,259" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.2604213, - "msecs": 260.4212760925293, - "relativeCreated": 47156.66365623474, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:41,260" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.2619655, - "msecs": 261.9655132293701, - "relativeCreated": 47158.20789337158, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:41,261" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954661.262305, - "msecs": 262.30502128601074, - "relativeCreated": 47158.54740142822, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:41,262" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.26321, - "msecs": 263.2100582122803, - "relativeCreated": 47159.45243835449, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:41,263" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.3079102, - "msecs": 307.9102039337158, - "relativeCreated": 47204.15258407593, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:41,307" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.3085823, - "msecs": 308.5823059082031, - "relativeCreated": 47204.824686050415, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:41,308" - } - ], - "time_consumption": 0.2516653537750244 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954661.5608587, - "msecs": 560.8587265014648, - "relativeCreated": 47457.10110664368, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:41,560", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954661.5606272, - "msecs": 560.6272220611572, - "relativeCreated": 47456.86960220337, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:41,560" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954661.5607617, - "msecs": 560.7616901397705, - "relativeCreated": 47457.00407028198, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:41,560" - } - ], - "time_consumption": 9.703636169433594e-05 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954661.5612738, - "msecs": 561.2738132476807, - "relativeCreated": 47457.51619338989, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:41,561", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954661.5610754, - "msecs": 561.0754489898682, - "relativeCreated": 47457.31782913208, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:41,561" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954661.5611944, - "msecs": 561.1944198608398, - "relativeCreated": 47457.43680000305, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:41,561" - } - ], - "time_consumption": 7.939338684082031e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954661.8626397, - "msecs": 862.6396656036377, - "relativeCreated": 47758.88204574585, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:41,862", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954661.5614767, - "msecs": 561.4767074584961, - "relativeCreated": 47457.71908760071, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:41,561" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954661.561933, - "msecs": 561.9330406188965, - "relativeCreated": 47458.17542076111, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/livingroom/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:41,561" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.5627785, - "msecs": 562.7784729003906, - "relativeCreated": 47459.0208530426, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:41,562" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.livingroom.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/livingroom/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.5633726, - "msecs": 563.3726119995117, - "relativeCreated": 47459.61499214172, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/livingroom/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:41,563" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.6057525, - "msecs": 605.7524681091309, - "relativeCreated": 47501.99484825134, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:41,605" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.6064708, - "msecs": 606.4708232879639, - "relativeCreated": 47502.713203430176, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:41,606" - } - ], - "time_consumption": 0.25616884231567383 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954661.8632216, - "msecs": 863.2216453552246, - "relativeCreated": 47759.46402549744, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:41,863", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954661.8630037, - "msecs": 863.0037307739258, - "relativeCreated": 47759.24611091614, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:41,863" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954661.8631256, - "msecs": 863.1255626678467, - "relativeCreated": 47759.36794281006, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:41,863" - } - ], - "time_consumption": 9.608268737792969e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954661.8635418, - "msecs": 863.541841506958, - "relativeCreated": 47759.78422164917, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:41,863", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954661.8633778, - "msecs": 863.3778095245361, - "relativeCreated": 47759.62018966675, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:41,863" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954661.8634636, - "msecs": 863.4636402130127, - "relativeCreated": 47759.706020355225, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:41,863" - } - ], - "time_consumption": 7.82012939453125e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954662.1646035, - "msecs": 164.60347175598145, - "relativeCreated": 48060.84585189819, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:42,164", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954661.863786, - "msecs": 863.785982131958, - "relativeCreated": 47760.02836227417, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/livingroom/main_light/state and payload false", - "asctime": "2023-02-09 15:57:41,863" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.8647823, - "msecs": 864.7823333740234, - "relativeCreated": 47761.024713516235, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:41,864" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.866289, - "msecs": 866.2889003753662, - "relativeCreated": 47762.53128051758, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:41,866" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954661.8667896, - "msecs": 866.7895793914795, - "relativeCreated": 47763.03195953369, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/livingroom/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:41,866" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.livingroom.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/livingroom/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.8679047, - "msecs": 867.9046630859375, - "relativeCreated": 47764.14704322815, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/livingroom/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:41,867" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.9118357, - "msecs": 911.8356704711914, - "relativeCreated": 47808.0780506134, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:41,911" - }, - { - "name": "smart_brain.mqtt.videv.ffw.livingroom.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/livingroom/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954661.912488, - "msecs": 912.4879837036133, - "relativeCreated": 47808.730363845825, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:41,912" - } - ], - "time_consumption": 0.25211548805236816 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954662.1652281, - "msecs": 165.22812843322754, - "relativeCreated": 48061.47050857544, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:42,165", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954662.1649475, - "msecs": 164.947509765625, - "relativeCreated": 48061.18988990784, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:42,164" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954662.1651218, - "msecs": 165.12179374694824, - "relativeCreated": 48061.36417388916, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:42,165" - } - ], - "time_consumption": 0.00010633468627929688 - } - ], - "time_consumption": 1.209913730621338, - "time_start": "2023-02-09 15:57:40,955", - "time_finished": "2023-02-09 15:57:42,165" - }, - "Brightness test for device and virtual device: zigbee/ffw/sleep/main_light": { - "name": "__tLogger__", - "msg": "Brightness test for device and virtual device: zigbee/ffw/sleep/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_brightness", - "created": 1675954662.1657596, - "msecs": 165.75956344604492, - "relativeCreated": 48062.00194358826, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness test for device and virtual device: zigbee/ffw/sleep/main_light", - "asctime": "2023-02-09 15:57:42,165", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 57, - "funcName": "__test_brightness__", - "created": 1675954662.4674263, - "msecs": 467.4263000488281, - "relativeCreated": 48363.66868019104, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:42,467", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954662.1660259, - "msecs": 166.02587699890137, - "relativeCreated": 48062.26825714111, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:42,166" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954662.166552, - "msecs": 166.55206680297852, - "relativeCreated": 48062.79444694519, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:42,166" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.1673853, - "msecs": 167.38533973693848, - "relativeCreated": 48063.62771987915, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:42,167" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.1679628, - "msecs": 167.96278953552246, - "relativeCreated": 48064.205169677734, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:42,167" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.2095842, - "msecs": 209.58423614501953, - "relativeCreated": 48105.82661628723, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:42,209" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.2102697, - "msecs": 210.26968955993652, - "relativeCreated": 48106.51206970215, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:42,210" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.210803, - "msecs": 210.80303192138672, - "relativeCreated": 48107.0454120636, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:42,210" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.21131, - "msecs": 211.30990982055664, - "relativeCreated": 48107.55228996277, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:42,211" - } - ], - "time_consumption": 0.2561163902282715 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954662.4680698, - "msecs": 468.06979179382324, - "relativeCreated": 48364.312171936035, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:42,468", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954662.4678223, - "msecs": 467.8223133087158, - "relativeCreated": 48364.06469345093, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:42,467" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954662.4679585, - "msecs": 467.9584503173828, - "relativeCreated": 48364.200830459595, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:42,467" - } - ], - "time_consumption": 0.00011134147644042969 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954662.7692418, - "msecs": 769.2418098449707, - "relativeCreated": 48665.48418998718, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:42,769", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954662.4684715, - "msecs": 468.4715270996094, - "relativeCreated": 48364.71390724182, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:42,468" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.469569, - "msecs": 469.56896781921387, - "relativeCreated": 48365.811347961426, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:42,469" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.4721022, - "msecs": 472.10216522216797, - "relativeCreated": 48368.34454536438, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:42,472" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.4727578, - "msecs": 472.75781631469727, - "relativeCreated": 48369.00019645691, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:42,472" - } - ], - "time_consumption": 0.29648399353027344 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954662.7698169, - "msecs": 769.8168754577637, - "relativeCreated": 48666.059255599976, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:42,769", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954662.7695758, - "msecs": 769.575834274292, - "relativeCreated": 48665.818214416504, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:42,769" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954662.7696903, - "msecs": 769.6902751922607, - "relativeCreated": 48665.93265533447, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:42,769" - } - ], - "time_consumption": 0.0001266002655029297 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954662.7701342, - "msecs": 770.1342105865479, - "relativeCreated": 48666.37659072876, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:42,770", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954662.7699687, - "msecs": 769.9687480926514, - "relativeCreated": 48666.21112823486, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:42,769" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954662.7700555, - "msecs": 770.0555324554443, - "relativeCreated": 48666.297912597656, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:42,770" - } - ], - "time_consumption": 7.867813110351562e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954663.072267, - "msecs": 72.26705551147461, - "relativeCreated": 48968.50943565369, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:43,072", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954662.7703803, - "msecs": 770.3802585601807, - "relativeCreated": 48666.62263870239, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:42,770" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.7713373, - "msecs": 771.3372707366943, - "relativeCreated": 48667.579650878906, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:42,771" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.7728953, - "msecs": 772.895336151123, - "relativeCreated": 48669.137716293335, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/sleep/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:42,772" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954662.773345, - "msecs": 773.3449935913086, - "relativeCreated": 48669.58737373352, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:42,773" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.7742448, - "msecs": 774.2447853088379, - "relativeCreated": 48670.48716545105, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:42,774" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.8175902, - "msecs": 817.5902366638184, - "relativeCreated": 48713.83261680603, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:42,817" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954662.8182333, - "msecs": 818.2332515716553, - "relativeCreated": 48714.47563171387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:42,818" - } - ], - "time_consumption": 0.25403380393981934 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954663.0729182, - "msecs": 72.91817665100098, - "relativeCreated": 48969.16055679321, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:43,072", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954663.0726752, - "msecs": 72.67522811889648, - "relativeCreated": 48968.91760826111, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:43,072" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954663.0728095, - "msecs": 72.80945777893066, - "relativeCreated": 48969.05183792114, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:43,072" - } - ], - "time_consumption": 0.0001087188720703125 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954663.0733585, - "msecs": 73.35853576660156, - "relativeCreated": 48969.60091590881, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:43,073", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954663.0731313, - "msecs": 73.13132286071777, - "relativeCreated": 48969.37370300293, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:43,073" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954663.0732348, - "msecs": 73.23479652404785, - "relativeCreated": 48969.47717666626, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:43,073" - } - ], - "time_consumption": 0.00012373924255371094 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954663.374604, - "msecs": 374.6039867401123, - "relativeCreated": 49270.846366882324, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:43,374", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954663.0737076, - "msecs": 73.70758056640625, - "relativeCreated": 48969.94996070862, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:43,073" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.0747826, - "msecs": 74.7826099395752, - "relativeCreated": 48971.02499008179, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:43,074" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.0773191, - "msecs": 77.31914520263672, - "relativeCreated": 48973.56152534485, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:43,077" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.0779865, - "msecs": 77.98647880554199, - "relativeCreated": 48974.228858947754, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:43,077" - } - ], - "time_consumption": 0.2966175079345703 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954663.3751895, - "msecs": 375.18954277038574, - "relativeCreated": 49271.4319229126, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:43,375", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954663.3749518, - "msecs": 374.9518394470215, - "relativeCreated": 49271.19421958923, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:43,374" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954663.3750932, - "msecs": 375.0932216644287, - "relativeCreated": 49271.33560180664, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:43,375" - } - ], - "time_consumption": 9.632110595703125e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954663.3755188, - "msecs": 375.518798828125, - "relativeCreated": 49271.76117897034, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:43,375", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954663.3753417, - "msecs": 375.34165382385254, - "relativeCreated": 49271.584033966064, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:43,375" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954663.3754394, - "msecs": 375.4394054412842, - "relativeCreated": 49271.681785583496, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:43,375" - } - ], - "time_consumption": 7.939338684082031e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954663.677619, - "msecs": 677.6189804077148, - "relativeCreated": 49573.86136054993, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:43,677", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954663.375777, - "msecs": 375.777006149292, - "relativeCreated": 49272.019386291504, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/sleep/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:43,375" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.3767295, - "msecs": 376.72948837280273, - "relativeCreated": 49272.971868515015, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:43,376" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.378258, - "msecs": 378.25798988342285, - "relativeCreated": 49274.500370025635, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/sleep/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:43,378" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954663.3786764, - "msecs": 378.6764144897461, - "relativeCreated": 49274.91879463196, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:43,378" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.379529, - "msecs": 379.5289993286133, - "relativeCreated": 49275.771379470825, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:43,379" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.424203, - "msecs": 424.20291900634766, - "relativeCreated": 49320.44529914856, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:43,424" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.4248881, - "msecs": 424.88813400268555, - "relativeCreated": 49321.1305141449, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:43,424" - } - ], - "time_consumption": 0.2527308464050293 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954663.6781957, - "msecs": 678.1957149505615, - "relativeCreated": 49574.43809509277, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:43,678", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954663.677983, - "msecs": 677.9830455780029, - "relativeCreated": 49574.225425720215, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:43,677" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954663.6781015, - "msecs": 678.1015396118164, - "relativeCreated": 49574.34391975403, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:43,678" - } - ], - "time_consumption": 9.417533874511719e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "__test_brightness__", - "created": 1675954663.979424, - "msecs": 979.423999786377, - "relativeCreated": 49875.66637992859, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:43,979", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954663.6784158, - "msecs": 678.4157752990723, - "relativeCreated": 49574.658155441284, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:43,678" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.6794422, - "msecs": 679.4421672821045, - "relativeCreated": 49575.68454742432, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:43,679" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.6814613, - "msecs": 681.4613342285156, - "relativeCreated": 49577.70371437073, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:43,681" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.6820414, - "msecs": 682.0414066314697, - "relativeCreated": 49578.28378677368, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:43,682" - } - ], - "time_consumption": 0.2973825931549072 - } - ], - "time_consumption": 1.813664436340332, - "time_start": "2023-02-09 15:57:42,165", - "time_finished": "2023-02-09 15:57:43,979" - }, - "Power On/ Off test for device and virtual device: shellies/ffw/sleep/main_light": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: shellies/ffw/sleep/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954663.9800875, - "msecs": 980.0875186920166, - "relativeCreated": 49876.32989883423, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: shellies/ffw/sleep/main_light", - "asctime": "2023-02-09 15:57:43,980", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954663.980549, - "msecs": 980.5490970611572, - "relativeCreated": 49876.79147720337, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:43,980", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954663.9803307, - "msecs": 980.3307056427002, - "relativeCreated": 49876.57308578491, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:43,980" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954663.9804525, - "msecs": 980.4525375366211, - "relativeCreated": 49876.69491767883, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:43,980" - } - ], - "time_consumption": 9.655952453613281e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954664.2819183, - "msecs": 281.9182872772217, - "relativeCreated": 50178.16066741943, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:44,281", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954663.9807584, - "msecs": 980.7584285736084, - "relativeCreated": 49877.00080871582, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:43,980" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954663.9812775, - "msecs": 981.2774658203125, - "relativeCreated": 49877.519845962524, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:43,981" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.9821286, - "msecs": 982.1286201477051, - "relativeCreated": 49878.37100028992, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:43,982" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954663.9827328, - "msecs": 982.7327728271484, - "relativeCreated": 49878.97515296936, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:43,982" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.0254335, - "msecs": 25.43354034423828, - "relativeCreated": 49921.67592048645, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:44,025" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.0259104, - "msecs": 25.910377502441406, - "relativeCreated": 49922.15275764465, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:44,025" - } - ], - "time_consumption": 0.2560079097747803 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954664.2825127, - "msecs": 282.5126647949219, - "relativeCreated": 50178.755044937134, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:44,282", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954664.2822897, - "msecs": 282.2897434234619, - "relativeCreated": 50178.532123565674, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:44,282" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954664.2824163, - "msecs": 282.41634368896484, - "relativeCreated": 50178.65872383118, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:44,282" - } - ], - "time_consumption": 9.632110595703125e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954664.2828352, - "msecs": 282.8352451324463, - "relativeCreated": 50179.07762527466, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:44,282", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954664.2826698, - "msecs": 282.6697826385498, - "relativeCreated": 50178.91216278076, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:44,282" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954664.2827566, - "msecs": 282.7565670013428, - "relativeCreated": 50178.998947143555, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:44,282" - } - ], - "time_consumption": 7.867813110351562e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954664.583961, - "msecs": 583.961009979248, - "relativeCreated": 50480.20339012146, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:44,583", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954664.2831035, - "msecs": 283.10346603393555, - "relativeCreated": 50179.34584617615, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/sleep/main_light/state and payload false", - "asctime": "2023-02-09 15:57:44,283" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.2840521, - "msecs": 284.05213356018066, - "relativeCreated": 50180.29451370239, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:44,284" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.285609, - "msecs": 285.60900688171387, - "relativeCreated": 50181.851387023926, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:44,285" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954664.2859588, - "msecs": 285.95876693725586, - "relativeCreated": 50182.20114707947, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:44,285" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.2868707, - "msecs": 286.87071800231934, - "relativeCreated": 50183.11309814453, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:44,286" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.3328168, - "msecs": 332.81683921813965, - "relativeCreated": 50229.05921936035, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:44,332" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.3360343, - "msecs": 336.03429794311523, - "relativeCreated": 50232.27667808533, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:44,336" - } - ], - "time_consumption": 0.2479267120361328 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954664.5845861, - "msecs": 584.5861434936523, - "relativeCreated": 50480.828523635864, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:44,584", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954664.584309, - "msecs": 584.3091011047363, - "relativeCreated": 50480.55148124695, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:44,584" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954664.584482, - "msecs": 584.481954574585, - "relativeCreated": 50480.7243347168, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:44,584" - } - ], - "time_consumption": 0.00010418891906738281 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954664.5849035, - "msecs": 584.9034786224365, - "relativeCreated": 50481.14585876465, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:44,584", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954664.5847406, - "msecs": 584.7406387329102, - "relativeCreated": 50480.98301887512, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:44,584" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954664.584827, - "msecs": 584.8269462585449, - "relativeCreated": 50481.06932640076, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:44,584" - } - ], - "time_consumption": 7.653236389160156e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954664.887459, - "msecs": 887.4590396881104, - "relativeCreated": 50783.70141983032, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:44,887", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954664.5851314, - "msecs": 585.1314067840576, - "relativeCreated": 50481.37378692627, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:44,585" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954664.5856442, - "msecs": 585.6442451477051, - "relativeCreated": 50481.88662528992, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/ffw/sleep/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:44,585" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.5865304, - "msecs": 586.5304470062256, - "relativeCreated": 50482.77282714844, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:44,586" - }, - { - "name": "smart_brain.mqtt.zigbee.ffw.sleep.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/ffw/sleep/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.5871325, - "msecs": 587.132453918457, - "relativeCreated": 50483.37483406067, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/ffw/sleep/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:44,587" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.6298888, - "msecs": 629.8887729644775, - "relativeCreated": 50526.13115310669, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:44,629" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.630593, - "msecs": 630.5930614471436, - "relativeCreated": 50526.835441589355, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:44,630" - } - ], - "time_consumption": 0.2568659782409668 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954664.888038, - "msecs": 888.037919998169, - "relativeCreated": 50784.28030014038, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:44,888", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954664.8878253, - "msecs": 887.8252506256104, - "relativeCreated": 50784.06763076782, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:44,887" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954664.887944, - "msecs": 887.9439830780029, - "relativeCreated": 50784.186363220215, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:44,887" - } - ], - "time_consumption": 9.393692016601562e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954664.8883512, - "msecs": 888.3512020111084, - "relativeCreated": 50784.59358215332, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:44,888", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954664.888189, - "msecs": 888.1890773773193, - "relativeCreated": 50784.43145751953, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:44,888" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954664.888275, - "msecs": 888.2749080657959, - "relativeCreated": 50784.51728820801, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:44,888" - } - ], - "time_consumption": 7.62939453125e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954665.190455, - "msecs": 190.45495986938477, - "relativeCreated": 51086.6973400116, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:45,190", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954664.8885963, - "msecs": 888.5962963104248, - "relativeCreated": 50784.83867645264, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/ffw/sleep/main_light/state and payload false", - "asctime": "2023-02-09 15:57:44,888" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.8895347, - "msecs": 889.5347118377686, - "relativeCreated": 50785.77709197998, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:44,889" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.8909504, - "msecs": 890.9504413604736, - "relativeCreated": 50787.192821502686, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:57:44,890" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954664.8912988, - "msecs": 891.298770904541, - "relativeCreated": 50787.54115104675, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/ffw/sleep/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:44,891" - }, - { - "name": "smart_brain.mqtt.shellies.ffw.sleep.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/ffw/sleep/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.8922102, - "msecs": 892.2102451324463, - "relativeCreated": 50788.45262527466, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/ffw/sleep/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:44,892" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.9358418, - "msecs": 935.8417987823486, - "relativeCreated": 50832.08417892456, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:44,935" - }, - { - "name": "smart_brain.mqtt.videv.ffw.sleep.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffw/sleep/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954664.936522, - "msecs": 936.5220069885254, - "relativeCreated": 50832.76438713074, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:44,936" - } - ], - "time_consumption": 0.2539329528808594 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954665.1911125, - "msecs": 191.11251831054688, - "relativeCreated": 51087.35489845276, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:45,191", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954665.1908684, - "msecs": 190.86837768554688, - "relativeCreated": 51087.11075782776, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:45,190" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954665.1910064, - "msecs": 191.00642204284668, - "relativeCreated": 51087.24880218506, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:45,191" - } - ], - "time_consumption": 0.00010609626770019531 - } - ], - "time_consumption": 1.2110249996185303, - "time_start": "2023-02-09 15:57:43,980", - "time_finished": "2023-02-09 15:57:45,191" - }, - "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/1": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/1", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954665.1916285, - "msecs": 191.62845611572266, - "relativeCreated": 51087.870836257935, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/1", - "asctime": "2023-02-09 15:57:45,191", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954665.1920483, - "msecs": 192.0483112335205, - "relativeCreated": 51088.29069137573, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:45,192", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954665.1918433, - "msecs": 191.84327125549316, - "relativeCreated": 51088.085651397705, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:45,191" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954665.1919506, - "msecs": 191.95055961608887, - "relativeCreated": 51088.1929397583, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:45,191" - } - ], - "time_consumption": 9.775161743164062e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954665.4933174, - "msecs": 493.3173656463623, - "relativeCreated": 51389.559745788574, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:45,493", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954665.1923182, - "msecs": 192.31820106506348, - "relativeCreated": 51088.560581207275, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2023-02-09 15:57:45,192" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.1933463, - "msecs": 193.3462619781494, - "relativeCreated": 51089.58864212036, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2023-02-09 15:57:45,193" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.1980596, - "msecs": 198.0595588684082, - "relativeCreated": 51094.30193901062, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2023-02-09 15:57:45,198" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.1986673, - "msecs": 198.6672878265381, - "relativeCreated": 51094.90966796875, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:45,198" - } - ], - "time_consumption": 0.2946500778198242 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954665.4938996, - "msecs": 493.8995838165283, - "relativeCreated": 51390.14196395874, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:45,493", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954665.4936805, - "msecs": 493.680477142334, - "relativeCreated": 51389.922857284546, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:45,493" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954665.4938033, - "msecs": 493.8032627105713, - "relativeCreated": 51390.04564285278, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:45,493" - } - ], - "time_consumption": 9.632110595703125e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954665.494213, - "msecs": 494.2131042480469, - "relativeCreated": 51390.45548439026, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:45,494", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954665.4940498, - "msecs": 494.0497875213623, - "relativeCreated": 51390.292167663574, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:45,494" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954665.4941359, - "msecs": 494.13585662841797, - "relativeCreated": 51390.37823677063, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:45,494" - } - ], - "time_consumption": 7.724761962890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954665.7963507, - "msecs": 796.3507175445557, - "relativeCreated": 51692.59309768677, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:45,796", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954665.4944875, - "msecs": 494.4875240325928, - "relativeCreated": 51390.729904174805, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/amplifier/state and payload false", - "asctime": "2023-02-09 15:57:45,494" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.4954834, - "msecs": 495.4833984375, - "relativeCreated": 51391.72577857971, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2023-02-09 15:57:45,495" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.4973228, - "msecs": 497.32279777526855, - "relativeCreated": 51393.56517791748, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2023-02-09 15:57:45,497" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954665.4976294, - "msecs": 497.62940406799316, - "relativeCreated": 51393.871784210205, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2023-02-09 15:57:45,497" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.4985251, - "msecs": 498.52514266967773, - "relativeCreated": 51394.76752281189, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2023-02-09 15:57:45,498" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.5870144, - "msecs": 587.0144367218018, - "relativeCreated": 51483.256816864014, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2023-02-09 15:57:45,587" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.5877829, - "msecs": 587.7828598022461, - "relativeCreated": 51484.02523994446, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:45,587" - } - ], - "time_consumption": 0.20856785774230957 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954665.7970157, - "msecs": 797.0156669616699, - "relativeCreated": 51693.25804710388, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:45,797", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954665.796768, - "msecs": 796.7679500579834, - "relativeCreated": 51693.010330200195, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:45,796" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954665.7969072, - "msecs": 796.9071865081787, - "relativeCreated": 51693.14956665039, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:45,796" - } - ], - "time_consumption": 0.00010848045349121094 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954665.797459, - "msecs": 797.4588871002197, - "relativeCreated": 51693.70126724243, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:45,797", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954665.797237, - "msecs": 797.2369194030762, - "relativeCreated": 51693.47929954529, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:45,797" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954665.7973688, - "msecs": 797.3687648773193, - "relativeCreated": 51693.61114501953, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:45,797" - } - ], - "time_consumption": 9.012222290039062e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954666.0985842, - "msecs": 98.58417510986328, - "relativeCreated": 51994.826555252075, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:46,098", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954665.797728, - "msecs": 797.7280616760254, - "relativeCreated": 51693.97044181824, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2023-02-09 15:57:45,797" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.798755, - "msecs": 798.7549304962158, - "relativeCreated": 51694.99731063843, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2023-02-09 15:57:45,798" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.8459475, - "msecs": 845.9475040435791, - "relativeCreated": 51742.18988418579, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2023-02-09 15:57:45,845" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954665.8466146, - "msecs": 846.6145992279053, - "relativeCreated": 51742.85697937012, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:45,846" - } - ], - "time_consumption": 0.251969575881958 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954666.0992205, - "msecs": 99.22051429748535, - "relativeCreated": 51995.4628944397, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:46,099", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954666.0989738, - "msecs": 98.97375106811523, - "relativeCreated": 51995.21613121033, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:46,098" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954666.0991108, - "msecs": 99.11084175109863, - "relativeCreated": 51995.35322189331, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:46,099" - } - ], - "time_consumption": 0.00010967254638671875 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954666.0996234, - "msecs": 99.62344169616699, - "relativeCreated": 51995.86582183838, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:46,099", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954666.0994008, - "msecs": 99.40075874328613, - "relativeCreated": 51995.6431388855, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:46,099" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954666.0995023, - "msecs": 99.5023250579834, - "relativeCreated": 51995.744705200195, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:46,099" - } - ], - "time_consumption": 0.00012111663818359375 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954666.400868, - "msecs": 400.8679389953613, - "relativeCreated": 52297.11031913757, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:46,400", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954666.0999024, - "msecs": 99.90239143371582, - "relativeCreated": 51996.14477157593, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/amplifier/state and payload false", - "asctime": "2023-02-09 15:57:46,099" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.1009414, - "msecs": 100.94141960144043, - "relativeCreated": 51997.18379974365, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2023-02-09 15:57:46,100" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.1024055, - "msecs": 102.40554809570312, - "relativeCreated": 51998.647928237915, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2023-02-09 15:57:46,102" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954666.1026962, - "msecs": 102.69618034362793, - "relativeCreated": 51998.93856048584, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2023-02-09 15:57:46,102" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.1035852, - "msecs": 103.58524322509766, - "relativeCreated": 51999.82762336731, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2023-02-09 15:57:46,103" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.1909132, - "msecs": 190.91320037841797, - "relativeCreated": 52087.15558052063, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2023-02-09 15:57:46,190" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.1916332, - "msecs": 191.6332244873047, - "relativeCreated": 52087.87560462952, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:46,191" - } - ], - "time_consumption": 0.20923471450805664 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954666.4014933, - "msecs": 401.4933109283447, - "relativeCreated": 52297.73569107056, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:46,401", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954666.4012756, - "msecs": 401.275634765625, - "relativeCreated": 52297.51801490784, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:46,401" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954666.4013994, - "msecs": 401.3993740081787, - "relativeCreated": 52297.64175415039, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:46,401" - } - ], - "time_consumption": 9.393692016601562e-05 - } - ], - "time_consumption": 1.209864854812622, - "time_start": "2023-02-09 15:57:45,191", - "time_finished": "2023-02-09 15:57:46,401" - }, - "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/3": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/3", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954666.4019856, - "msecs": 401.98564529418945, - "relativeCreated": 52298.2280254364, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/3", - "asctime": "2023-02-09 15:57:46,401", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954666.4023592, - "msecs": 402.3592472076416, - "relativeCreated": 52298.60162734985, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:46,402", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954666.402185, - "msecs": 402.18496322631836, - "relativeCreated": 52298.42734336853, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:46,402" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954666.4022787, - "msecs": 402.2786617279053, - "relativeCreated": 52298.52104187012, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:46,402" - } - ], - "time_consumption": 8.058547973632812e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954666.7044501, - "msecs": 704.4501304626465, - "relativeCreated": 52600.69251060486, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:46,704", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954666.402601, - "msecs": 402.6010036468506, - "relativeCreated": 52298.84338378906, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", - "asctime": "2023-02-09 15:57:46,402" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.4035335, - "msecs": 403.5334587097168, - "relativeCreated": 52299.77583885193, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", - "asctime": "2023-02-09 15:57:46,403" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.4059124, - "msecs": 405.9123992919922, - "relativeCreated": 52302.154779434204, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2023-02-09 15:57:46,405" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954666.4062147, - "msecs": 406.21471405029297, - "relativeCreated": 52302.457094192505, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2023-02-09 15:57:46,406" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.4068065, - "msecs": 406.80646896362305, - "relativeCreated": 52303.048849105835, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", - "asctime": "2023-02-09 15:57:46,406" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.407449, - "msecs": 407.44900703430176, - "relativeCreated": 52303.691387176514, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:46,407" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.4079447, - "msecs": 407.9446792602539, - "relativeCreated": 52304.187059402466, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2023-02-09 15:57:46,407" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.49802, - "msecs": 498.0199337005615, - "relativeCreated": 52394.26231384277, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2023-02-09 15:57:46,498" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.498761, - "msecs": 498.7609386444092, - "relativeCreated": 52395.00331878662, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:46,498" - } - ], - "time_consumption": 0.2056891918182373 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954666.7050366, - "msecs": 705.0366401672363, - "relativeCreated": 52601.27902030945, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:46,705", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954666.7048204, - "msecs": 704.8203945159912, - "relativeCreated": 52601.0627746582, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:46,704" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954666.7049415, - "msecs": 704.9415111541748, - "relativeCreated": 52601.18389129639, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:46,704" - } - ], - "time_consumption": 9.512901306152344e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954666.705417, - "msecs": 705.4169178009033, - "relativeCreated": 52601.659297943115, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:46,705", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954666.7052228, - "msecs": 705.2228450775146, - "relativeCreated": 52601.46522521973, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:46,705" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954666.7053108, - "msecs": 705.3108215332031, - "relativeCreated": 52601.553201675415, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:46,705" - } - ], - "time_consumption": 0.00010609626770019531 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954667.0063646, - "msecs": 6.364583969116211, - "relativeCreated": 52902.60696411133, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:47,006", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954666.7056687, - "msecs": 705.6686878204346, - "relativeCreated": 52601.91106796265, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/cd_player/state and payload false", - "asctime": "2023-02-09 15:57:46,705" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.7066495, - "msecs": 706.6495418548584, - "relativeCreated": 52602.89192199707, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", - "asctime": "2023-02-09 15:57:46,706" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.7082005, - "msecs": 708.2004547119141, - "relativeCreated": 52604.442834854126, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3/set and payload b'false'", - "asctime": "2023-02-09 15:57:46,708" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954666.7084987, - "msecs": 708.4987163543701, - "relativeCreated": 52604.74109649658, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", - "asctime": "2023-02-09 15:57:46,708" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.7094333, - "msecs": 709.4333171844482, - "relativeCreated": 52605.67569732666, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", - "asctime": "2023-02-09 15:57:46,709" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.7534988, - "msecs": 753.4987926483154, - "relativeCreated": 52649.74117279053, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2023-02-09 15:57:46,753" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954666.7538662, - "msecs": 753.8661956787109, - "relativeCreated": 52650.10857582092, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2023-02-09 15:57:46,753" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.7544615, - "msecs": 754.4615268707275, - "relativeCreated": 52650.70390701294, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", - "asctime": "2023-02-09 15:57:46,754" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.7550905, - "msecs": 755.0904750823975, - "relativeCreated": 52651.33285522461, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:46,755" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.7555842, - "msecs": 755.5842399597168, - "relativeCreated": 52651.82662010193, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2023-02-09 15:57:46,755" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.8429496, - "msecs": 842.949628829956, - "relativeCreated": 52739.19200897217, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2023-02-09 15:57:46,842" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954666.8436737, - "msecs": 843.6737060546875, - "relativeCreated": 52739.9160861969, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:46,843" - } - ], - "time_consumption": 0.1626908779144287 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954667.0069597, - "msecs": 6.959676742553711, - "relativeCreated": 52903.202056884766, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:47,006", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954667.006736, - "msecs": 6.736040115356445, - "relativeCreated": 52902.97842025757, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:47,006" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954667.0068607, - "msecs": 6.8607330322265625, - "relativeCreated": 52903.10311317444, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:47,006" - } - ], - "time_consumption": 9.894371032714844e-05 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954667.0073326, - "msecs": 7.332563400268555, - "relativeCreated": 52903.57494354248, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:47,007", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954667.00715, - "msecs": 7.149934768676758, - "relativeCreated": 52903.39231491089, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:47,007" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954667.007241, - "msecs": 7.241010665893555, - "relativeCreated": 52903.483390808105, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:47,007" - } - ], - "time_consumption": 9.1552734375e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954667.309425, - "msecs": 309.42511558532715, - "relativeCreated": 53205.66749572754, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:47,309", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954667.0075727, - "msecs": 7.572650909423828, - "relativeCreated": 52903.815031051636, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", - "asctime": "2023-02-09 15:57:47,007" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.0085402, - "msecs": 8.540153503417969, - "relativeCreated": 52904.78253364563, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", - "asctime": "2023-02-09 15:57:47,008" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.0109293, - "msecs": 10.929346084594727, - "relativeCreated": 52907.17172622681, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2023-02-09 15:57:47,010" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954667.0112345, - "msecs": 11.234521865844727, - "relativeCreated": 52907.47690200806, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2023-02-09 15:57:47,011" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.0118215, - "msecs": 11.821508407592773, - "relativeCreated": 52908.063888549805, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", - "asctime": "2023-02-09 15:57:47,011" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.0128179, - "msecs": 12.817859649658203, - "relativeCreated": 52909.06023979187, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:47,012" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.0136235, - "msecs": 13.623476028442383, - "relativeCreated": 52909.865856170654, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2023-02-09 15:57:47,013" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.102071, - "msecs": 102.07104682922363, - "relativeCreated": 52998.313426971436, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2023-02-09 15:57:47,102" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.1027887, - "msecs": 102.78868675231934, - "relativeCreated": 52999.03106689453, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:47,102" - } - ], - "time_consumption": 0.2066364288330078 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954667.3100033, - "msecs": 310.00328063964844, - "relativeCreated": 53206.24566078186, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:47,310", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954667.3097897, - "msecs": 309.78965759277344, - "relativeCreated": 53206.032037734985, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:47,309" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954667.309907, - "msecs": 309.9069595336914, - "relativeCreated": 53206.1493396759, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:47,309" - } - ], - "time_consumption": 9.632110595703125e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954667.3103204, - "msecs": 310.3203773498535, - "relativeCreated": 53206.562757492065, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:47,310", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954667.3101547, - "msecs": 310.15467643737793, - "relativeCreated": 53206.39705657959, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:47,310" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954667.3102417, - "msecs": 310.24169921875, - "relativeCreated": 53206.48407936096, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:47,310" - } - ], - "time_consumption": 7.867813110351562e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954667.6124744, - "msecs": 612.4744415283203, - "relativeCreated": 53508.71682167053, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:47,612", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954667.3105621, - "msecs": 310.5621337890625, - "relativeCreated": 53206.804513931274, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/cd_player/state and payload false", - "asctime": "2023-02-09 15:57:47,310" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.311569, - "msecs": 311.5689754486084, - "relativeCreated": 53207.81135559082, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", - "asctime": "2023-02-09 15:57:47,311" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.3130207, - "msecs": 313.0207061767578, - "relativeCreated": 53209.26308631897, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3/set and payload b'false'", - "asctime": "2023-02-09 15:57:47,313" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954667.3133533, - "msecs": 313.3533000946045, - "relativeCreated": 53209.59568023682, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", - "asctime": "2023-02-09 15:57:47,313" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.3142736, - "msecs": 314.2735958099365, - "relativeCreated": 53210.51597595215, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", - "asctime": "2023-02-09 15:57:47,314" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.357517, - "msecs": 357.5170040130615, - "relativeCreated": 53253.75938415527, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2023-02-09 15:57:47,357" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954667.3578846, - "msecs": 357.88464546203613, - "relativeCreated": 53254.12702560425, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2023-02-09 15:57:47,357" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.3584816, - "msecs": 358.48164558410645, - "relativeCreated": 53254.72402572632, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", - "asctime": "2023-02-09 15:57:47,358" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.359139, - "msecs": 359.13896560668945, - "relativeCreated": 53255.3813457489, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:47,359" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.3596358, - "msecs": 359.6358299255371, - "relativeCreated": 53255.87821006775, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2023-02-09 15:57:47,359" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.446045, - "msecs": 446.044921875, - "relativeCreated": 53342.28730201721, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2023-02-09 15:57:47,446" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954667.4467342, - "msecs": 446.7341899871826, - "relativeCreated": 53342.976570129395, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:47,446" - } - ], - "time_consumption": 0.1657402515411377 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954667.6131723, - "msecs": 613.1722927093506, - "relativeCreated": 53509.41467285156, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:47,613", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954667.6128745, - "msecs": 612.8745079040527, - "relativeCreated": 53509.116888046265, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:47,612" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954667.6130092, - "msecs": 613.0092144012451, - "relativeCreated": 53509.25159454346, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:47,613" - } - ], - "time_consumption": 0.00016307830810546875 - } - ], - "time_consumption": 1.2111866474151611, - "time_start": "2023-02-09 15:57:46,401", - "time_finished": "2023-02-09 15:57:47,613" - }, - "Power On/ Off synchronisation test: my_apps/gfw/dirk/powerplug/output/3": { - "name": "__tLogger__", - "msg": "Power On/ Off synchronisation test: my_apps/gfw/dirk/powerplug/output/3", + "msg": "Power On/ Off synchronisation test: shellies/gfw/floor/main_light", "args": null, "levelname": "INFO", "levelno": 20, @@ -74279,15 +87571,15 @@ "stack_info": null, "lineno": 24, "funcName": "test_power_on_off_sync", - "created": 1675954667.613893, - "msecs": 613.8930320739746, - "relativeCreated": 53510.13541221619, - "thread": 139894075555840, + "created": 1676441680.040956, + "msecs": 40.95602035522461, + "relativeCreated": 77044.4712638855, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off synchronisation test: my_apps/gfw/dirk/powerplug/output/3", - "asctime": "2023-02-09 15:57:47,613", + "process": 509276, + "message": "Power On/ Off synchronisation test: shellies/gfw/floor/main_light", + "asctime": "2023-02-15 07:14:40,040", "moduleLogger": [], "testcaseLogger": [ { @@ -74306,15 +87598,15 @@ "stack_info": null, "lineno": 30, "funcName": "__test_power_on_off_sync__", - "created": 1675954667.9160318, - "msecs": 916.0318374633789, - "relativeCreated": 53812.27421760559, - "thread": 139894075555840, + "created": 1676441680.3419402, + "msecs": 341.94016456604004, + "relativeCreated": 77345.45540809631, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Setting preconditions for master device 'False'", - "asctime": "2023-02-09 15:57:47,916", + "asctime": "2023-02-15 07:14:40,341", "moduleLogger": [], "time_consumption": 0.0 }, @@ -74334,22 +87626,22 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off_sync__", - "created": 1675954668.217205, - "msecs": 217.20504760742188, - "relativeCreated": 54113.447427749634, - "thread": 139894075555840, + "created": 1676441680.643789, + "msecs": 643.7890529632568, + "relativeCreated": 77647.30429649353, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing master device state to 'True'", - "asctime": "2023-02-09 15:57:48,217", + "asctime": "2023-02-15 07:14:40,643", "moduleLogger": [ { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "true" + "shellies/gfw/floor/main_light/relay/0", + "on" ], "levelname": "DEBUG", "levelno": 10, @@ -74361,22 +87653,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954667.9165368, - "msecs": 916.536808013916, - "relativeCreated": 53812.77918815613, - "thread": 139894075555840, + "created": 1676441680.3425188, + "msecs": 342.51880645751953, + "relativeCreated": 77346.0340499878, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload true", - "asctime": "2023-02-09 15:57:47,916" + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:40,342" }, { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "b'true'" + "shellies/gfw/floor/main_light/relay/0", + "b'on'" ], "levelname": "DEBUG", "levelno": 10, @@ -74388,22 +87680,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954667.9176133, - "msecs": 917.6132678985596, - "relativeCreated": 53813.85564804077, - "thread": 139894051313216, + "created": 1676441680.3439658, + "msecs": 343.9657688140869, + "relativeCreated": 77347.48101234436, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'true'", - "asctime": "2023-02-09 15:57:47,917" + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:40,343" }, { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", "msg": "Received message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", - "b'true'" + "zigbee/gfw/floor/main_light_1/get", + "b'{\"state\": \"\"}'" ], "levelname": "DEBUG", "levelno": 10, @@ -74415,22 +87707,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954667.9205642, - "msecs": 920.5641746520996, - "relativeCreated": 53816.80655479431, - "thread": 139894051313216, + "created": 1676441680.3469868, + "msecs": 346.9867706298828, + "relativeCreated": 77350.50201416016, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'true'", - "asctime": "2023-02-09 15:57:47,920" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:40,346" }, { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", "msg": "Sending message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "true" + "zigbee/gfw/floor/main_light_1", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" ], "levelname": "DEBUG", "levelno": 10, @@ -74442,21 +87734,75 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954667.9209037, - "msecs": 920.9036827087402, - "relativeCreated": 53817.14606285095, - "thread": 139894051313216, + "created": 1676441680.3474295, + "msecs": 347.4295139312744, + "relativeCreated": 77350.94475746155, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload true", - "asctime": "2023-02-09 15:57:47,920" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:40,347" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/cd_player/state", + "zigbee/gfw/floor/main_light_2/get", + "b'{\"state\": \"\"}'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441680.3482938, + "msecs": 348.2937812805176, + "relativeCreated": 77351.80902481079, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", + "asctime": "2023-02-15 07:14:40,348" + }, + { + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", + "msg": "Sending message with topic %s and payload %s", + "args": [ + "zigbee/gfw/floor/main_light_2", + "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 75, + "funcName": "send", + "created": 1676441680.348665, + "msecs": 348.6649990081787, + "relativeCreated": 77352.18024253845, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}", + "asctime": "2023-02-15 07:14:40,348" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", "b'true'" ], "levelname": "DEBUG", @@ -74469,22 +87815,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954667.921575, - "msecs": 921.5750694274902, - "relativeCreated": 53817.8174495697, - "thread": 139894051313216, + "created": 1676441680.3496141, + "msecs": 349.61414337158203, + "relativeCreated": 77353.12938690186, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'true'", - "asctime": "2023-02-09 15:57:47,921" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:40,349" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/cd_player/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" + "zigbee/gfw/floor/main_light_1", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -74496,22 +87842,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954667.9222112, - "msecs": 922.2111701965332, - "relativeCreated": 53818.453550338745, - "thread": 139894051313216, + "created": 1676441680.350352, + "msecs": 350.35204887390137, + "relativeCreated": 77353.86729240417, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:47,922" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:40,350" }, { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", + "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", "msg": "Received message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'true'" + "zigbee/gfw/floor/main_light_2", + "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'" ], "levelname": "DEBUG", "levelno": 10, @@ -74523,76 +87869,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954667.9227128, - "msecs": 922.7128028869629, - "relativeCreated": 53818.955183029175, - "thread": 139894051313216, + "created": 1676441680.351087, + "msecs": 351.0870933532715, + "relativeCreated": 77354.60233688354, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true'", - "asctime": "2023-02-09 15:57:47,922" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.0109644, - "msecs": 10.964393615722656, - "relativeCreated": 53907.206773757935, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'true'", - "asctime": "2023-02-09 15:57:48,010" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.0116715, - "msecs": 11.67154312133789, - "relativeCreated": 53907.91392326355, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:48,011" + "process": 509276, + "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0}'", + "asctime": "2023-02-15 07:14:40,351" } ], - "time_consumption": 0.20553350448608398 + "time_consumption": 0.29270195960998535 }, { "name": "__tLogger__", - "msg": "Follower device (my_apps/gfw/dirk/powerplug/output/1) state is correct (Content %s and Type is %s).", + "msg": "Follower device (zigbee/gfw/floor/main_light_1) state is correct (Content %s and Type is %s).", "args": [ "True", "" @@ -74607,21 +87899,21 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954668.2178662, - "msecs": 217.8661823272705, - "relativeCreated": 54114.10856246948, - "thread": 139894075555840, + "created": 1676441680.6445353, + "msecs": 644.5353031158447, + "relativeCreated": 77648.05054664612, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Follower device (my_apps/gfw/dirk/powerplug/output/1) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:48,217", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_1) state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:40,644", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Follower device (my_apps/gfw/dirk/powerplug/output/1) state", + "Follower device (zigbee/gfw/floor/main_light_1) state", "True", "" ], @@ -74635,21 +87927,21 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954668.2175987, - "msecs": 217.59867668151855, - "relativeCreated": 54113.84105682373, - "thread": 139894075555840, + "created": 1676441680.6442604, + "msecs": 644.2604064941406, + "relativeCreated": 77647.77565002441, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (my_apps/gfw/dirk/powerplug/output/1) state): True ()", - "asctime": "2023-02-09 15:57:48,217" + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) state): True ()", + "asctime": "2023-02-15 07:14:40,644" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Follower device (my_apps/gfw/dirk/powerplug/output/1) state", + "Follower device (zigbee/gfw/floor/main_light_1) state", "=", "True", "" @@ -74664,18 +87956,105 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954668.2177584, - "msecs": 217.7584171295166, - "relativeCreated": 54114.00079727173, - "thread": 139894075555840, + "created": 1676441680.6444125, + "msecs": 644.4125175476074, + "relativeCreated": 77647.92776107788, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (my_apps/gfw/dirk/powerplug/output/1) state): result = True ()", - "asctime": "2023-02-09 15:57:48,217" + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) state): result = True ()", + "asctime": "2023-02-15 07:14:40,644" } ], - "time_consumption": 0.00010776519775390625 + "time_consumption": 0.0001227855682373047 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/gfw/floor/main_light_2) state is correct (Content %s and Type is %s).", + "args": [ + "True", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441680.644992, + "msecs": 644.9921131134033, + "relativeCreated": 77648.50735664368, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_2) state is correct (Content True and Type is ).", + "asctime": "2023-02-15 07:14:40,644", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_2) state", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441680.6447742, + "msecs": 644.7741985321045, + "relativeCreated": 77648.28944206238, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) state): True ()", + "asctime": "2023-02-15 07:14:40,644" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_2) state", + "=", + "True", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441680.64489, + "msecs": 644.8900699615479, + "relativeCreated": 77648.40531349182, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) state): result = True ()", + "asctime": "2023-02-15 07:14:40,644" + } + ], + "time_consumption": 0.00010204315185546875 }, { "name": "__tLogger__", @@ -74693,22 +88072,22 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off_sync__", - "created": 1675954668.5190945, - "msecs": 519.0944671630859, - "relativeCreated": 54415.3368473053, - "thread": 139894075555840, + "created": 1676441680.9465547, + "msecs": 946.5546607971191, + "relativeCreated": 77950.06990432739, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing master device state to 'False'", - "asctime": "2023-02-09 15:57:48,519", + "asctime": "2023-02-15 07:14:40,946", "moduleLogger": [ { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/3", - "false" + "shellies/gfw/floor/main_light/relay/0", + "off" ], "levelname": "DEBUG", "levelno": 10, @@ -74720,21 +88099,48 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954668.2181509, - "msecs": 218.15085411071777, - "relativeCreated": 54114.39323425293, - "thread": 139894075555840, + "created": 1676441680.6452842, + "msecs": 645.2841758728027, + "relativeCreated": 77648.79941940308, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/3 and payload false", - "asctime": "2023-02-09 15:57:48,218" + "process": 509276, + "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:40,645" }, { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.3", + "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/3", + "shellies/gfw/floor/main_light/relay/0", + "b'off'" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", + "filename": "__init__.py", + "module": "__init__", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 91, + "funcName": "__receive__", + "created": 1676441680.646677, + "msecs": 646.6770172119141, + "relativeCreated": 77650.19226074219, + "thread": 140246884292160, + "threadName": "Thread-1 (_thread_main)", + "processName": "MainProcess", + "process": 509276, + "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:40,646" + }, + { + "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "msg": "Received message with topic %s and payload %s", + "args": [ + "videv/gfw/floor/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -74747,211 +88153,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954668.219165, - "msecs": 219.16508674621582, - "relativeCreated": 54115.40746688843, - "thread": 139894051313216, + "created": 1676441680.65124, + "msecs": 651.2401103973389, + "relativeCreated": 77654.75535392761, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/3 and payload b'false'", - "asctime": "2023-02-09 15:57:48,219" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.2223566, - "msecs": 222.35655784606934, - "relativeCreated": 54118.59893798828, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1/set and payload b'false'", - "asctime": "2023-02-09 15:57:48,222" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954668.2226982, - "msecs": 222.69821166992188, - "relativeCreated": 54118.940591812134, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/1 and payload false", - "asctime": "2023-02-09 15:57:48,222" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.2234013, - "msecs": 223.40130805969238, - "relativeCreated": 54119.643688201904, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/state and payload b'false'", - "asctime": "2023-02-09 15:57:48,223" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.cd_player.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/cd_player/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.224119, - "msecs": 224.1189479827881, - "relativeCreated": 54120.361328125, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:48,224" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/1", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.2246768, - "msecs": 224.67684745788574, - "relativeCreated": 54120.9192276001, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false'", - "asctime": "2023-02-09 15:57:48,224" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.3101425, - "msecs": 310.14251708984375, - "relativeCreated": 54206.384897232056, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/state and payload b'false'", - "asctime": "2023-02-09 15:57:48,310" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.amplifier.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/amplifier/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.3108168, - "msecs": 310.81676483154297, - "relativeCreated": 54207.059144973755, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:48,310" + "process": 509276, + "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:40,651" } ], - "time_consumption": 0.20827770233154297 + "time_consumption": 0.2953145503997803 }, { "name": "__tLogger__", - "msg": "Follower device (my_apps/gfw/dirk/powerplug/output/1) state is correct (Content %s and Type is %s).", + "msg": "Follower device (zigbee/gfw/floor/main_light_1) state is correct (Content %s and Type is %s).", "args": [ "False", "" @@ -74966,21 +88183,21 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954668.5197225, - "msecs": 519.7224617004395, - "relativeCreated": 54415.96484184265, - "thread": 139894075555840, + "created": 1676441680.9472225, + "msecs": 947.2224712371826, + "relativeCreated": 77950.73771476746, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Follower device (my_apps/gfw/dirk/powerplug/output/1) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:48,519", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_1) state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:40,947", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Follower device (my_apps/gfw/dirk/powerplug/output/1) state", + "Follower device (zigbee/gfw/floor/main_light_1) state", "False", "" ], @@ -74994,21 +88211,21 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954668.519502, - "msecs": 519.5019245147705, - "relativeCreated": 54415.74430465698, - "thread": 139894075555840, + "created": 1676441680.9469533, + "msecs": 946.953296661377, + "relativeCreated": 77950.46854019165, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (my_apps/gfw/dirk/powerplug/output/1) state): False ()", - "asctime": "2023-02-09 15:57:48,519" + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) state): False ()", + "asctime": "2023-02-15 07:14:40,946" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Follower device (my_apps/gfw/dirk/powerplug/output/1) state", + "Follower device (zigbee/gfw/floor/main_light_1) state", "=", "False", "" @@ -75023,5199 +88240,114 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954668.5196247, - "msecs": 519.6247100830078, - "relativeCreated": 54415.86709022522, - "thread": 139894075555840, + "created": 1676441680.94711, + "msecs": 947.1099376678467, + "relativeCreated": 77950.62518119812, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (my_apps/gfw/dirk/powerplug/output/1) state): result = False ()", - "asctime": "2023-02-09 15:57:48,519" + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) state): result = False ()", + "asctime": "2023-02-15 07:14:40,947" } ], - "time_consumption": 9.775161743164062e-05 + "time_consumption": 0.0001125335693359375 + }, + { + "name": "__tLogger__", + "msg": "Follower device (zigbee/gfw/floor/main_light_2) state is correct (Content %s and Type is %s).", + "args": [ + "False", + "" + ], + "levelname": "INFO", + "levelno": 20, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 184, + "funcName": "equivalency_chk", + "created": 1676441680.94759, + "msecs": 947.5901126861572, + "relativeCreated": 77951.10535621643, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Follower device (zigbee/gfw/floor/main_light_2) state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:40,947", + "moduleLogger": [ + { + "name": "__unittest__", + "msg": "Result (%s): %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_2) state", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 22, + "funcName": "__report_result__", + "created": 1676441680.9473999, + "msecs": 947.3998546600342, + "relativeCreated": 77950.91509819031, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) state): False ()", + "asctime": "2023-02-15 07:14:40,947" + }, + { + "name": "__unittest__", + "msg": "Expectation (%s): result %s %s (%s)", + "args": [ + "Follower device (zigbee/gfw/floor/main_light_2) state", + "=", + "False", + "" + ], + "levelname": "DEBUG", + "levelno": 10, + "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", + "filename": "test.py", + "module": "test", + "exc_info": null, + "exc_text": null, + "stack_info": null, + "lineno": 26, + "funcName": "__report_expectation__", + "created": 1676441680.9475005, + "msecs": 947.500467300415, + "relativeCreated": 77951.01571083069, + "thread": 140246908178432, + "threadName": "MainThread", + "processName": "MainProcess", + "process": 509276, + "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) state): result = False ()", + "asctime": "2023-02-15 07:14:40,947" + } + ], + "time_consumption": 8.96453857421875e-05 } ], - "time_consumption": 0.9058294296264648, - "time_start": "2023-02-09 15:57:47,613", - "time_finished": "2023-02-09 15:57:48,519" + "time_consumption": 0.9066340923309326, + "time_start": "2023-02-15 07:14:40,040", + "time_finished": "2023-02-15 07:14:40,947" }, - "Brightness test for device and virtual device: zigbee/gfw/dirk/desk_light": { + "Away mode test: zigbee/gfw/marion/heating_valve": { "name": "__tLogger__", - "msg": "Brightness test for device and virtual device: zigbee/gfw/dirk/desk_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_brightness", - "created": 1675954668.5201988, - "msecs": 520.1988220214844, - "relativeCreated": 54416.441202163696, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness test for device and virtual device: zigbee/gfw/dirk/desk_light", - "asctime": "2023-02-09 15:57:48,520", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 57, - "funcName": "__test_brightness__", - "created": 1675954668.8218093, - "msecs": 821.8092918395996, - "relativeCreated": 54718.05167198181, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:48,821", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954668.5205402, - "msecs": 520.5402374267578, - "relativeCreated": 54416.78261756897, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", - "asctime": "2023-02-09 15:57:48,520" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954668.5210826, - "msecs": 521.0826396942139, - "relativeCreated": 54417.325019836426, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:48,521" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.5219202, - "msecs": 521.9202041625977, - "relativeCreated": 54418.16258430481, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", - "asctime": "2023-02-09 15:57:48,521" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.5224304, - "msecs": 522.430419921875, - "relativeCreated": 54418.67280006409, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:48,522" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.5698745, - "msecs": 569.8745250701904, - "relativeCreated": 54466.1169052124, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:48,569" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.5708036, - "msecs": 570.8036422729492, - "relativeCreated": 54467.04602241516, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:48,570" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.5721989, - "msecs": 572.1988677978516, - "relativeCreated": 54468.44124794006, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:48,572" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.572814, - "msecs": 572.8139877319336, - "relativeCreated": 54469.056367874146, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:48,572" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.573393, - "msecs": 573.3931064605713, - "relativeCreated": 54469.63548660278, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:48,573" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.5739121, - "msecs": 573.9121437072754, - "relativeCreated": 54470.15452384949, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:48,573" - } - ], - "time_consumption": 0.24789714813232422 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954668.8224423, - "msecs": 822.4422931671143, - "relativeCreated": 54718.684673309326, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:48,822", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954668.822207, - "msecs": 822.206974029541, - "relativeCreated": 54718.44935417175, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:48,822" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954668.822338, - "msecs": 822.3381042480469, - "relativeCreated": 54718.58048439026, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:48,822" - } - ], - "time_consumption": 0.00010418891906738281 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954669.1239305, - "msecs": 123.93045425415039, - "relativeCreated": 55020.17283439636, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:49,123", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954668.8228364, - "msecs": 822.8363990783691, - "relativeCreated": 54719.07877922058, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:48,822" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.824045, - "msecs": 824.044942855835, - "relativeCreated": 54720.28732299805, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:48,824" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.8268228, - "msecs": 826.8227577209473, - "relativeCreated": 54723.06513786316, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:48,826" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954668.8275135, - "msecs": 827.5134563446045, - "relativeCreated": 54723.75583648682, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:48,827" - } - ], - "time_consumption": 0.2964169979095459 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954669.1245456, - "msecs": 124.54557418823242, - "relativeCreated": 55020.787954330444, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:49,124", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954669.124296, - "msecs": 124.29594993591309, - "relativeCreated": 55020.538330078125, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:49,124" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954669.1244142, - "msecs": 124.41420555114746, - "relativeCreated": 55020.65658569336, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:49,124" - } - ], - "time_consumption": 0.00013136863708496094 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954669.1248696, - "msecs": 124.86958503723145, - "relativeCreated": 55021.11196517944, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:49,124", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954669.124702, - "msecs": 124.70197677612305, - "relativeCreated": 55020.944356918335, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:49,124" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954669.1247911, - "msecs": 124.79114532470703, - "relativeCreated": 55021.03352546692, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:49,124" - } - ], - "time_consumption": 7.843971252441406e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954669.4259667, - "msecs": 425.966739654541, - "relativeCreated": 55322.20911979675, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:49,425", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954669.1251583, - "msecs": 125.15830993652344, - "relativeCreated": 55021.400690078735, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:49,125" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.1261554, - "msecs": 126.15537643432617, - "relativeCreated": 55022.39775657654, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:49,126" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.1277275, - "msecs": 127.72750854492188, - "relativeCreated": 55023.969888687134, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:49,127" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954669.1281023, - "msecs": 128.10230255126953, - "relativeCreated": 55024.34468269348, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:49,128" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.1289945, - "msecs": 128.99446487426758, - "relativeCreated": 55025.23684501648, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:49,128" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.1720953, - "msecs": 172.09529876708984, - "relativeCreated": 55068.3376789093, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:49,172" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.1727448, - "msecs": 172.7447509765625, - "relativeCreated": 55068.987131118774, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:49,172" - } - ], - "time_consumption": 0.2532219886779785 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954669.4265718, - "msecs": 426.5718460083008, - "relativeCreated": 55322.81422615051, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:49,426", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954669.4263346, - "msecs": 426.3346195220947, - "relativeCreated": 55322.57699966431, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:49,426" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954669.4264498, - "msecs": 426.4497756958008, - "relativeCreated": 55322.69215583801, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:49,426" - } - ], - "time_consumption": 0.0001220703125 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954669.4268847, - "msecs": 426.88465118408203, - "relativeCreated": 55323.127031326294, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:49,426", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954669.4267213, - "msecs": 426.72133445739746, - "relativeCreated": 55322.96371459961, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:49,426" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954669.426807, - "msecs": 426.8069267272949, - "relativeCreated": 55323.04930686951, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:49,426" - } - ], - "time_consumption": 7.772445678710938e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954669.7290993, - "msecs": 729.0992736816406, - "relativeCreated": 55625.34165382385, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:49,729", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954669.4271934, - "msecs": 427.19340324401855, - "relativeCreated": 55323.43578338623, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:49,427" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.4281495, - "msecs": 428.1494617462158, - "relativeCreated": 55324.39184188843, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:49,428" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.4305441, - "msecs": 430.5441379547119, - "relativeCreated": 55326.786518096924, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:49,430" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.4311857, - "msecs": 431.1857223510742, - "relativeCreated": 55327.428102493286, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:49,431" - } - ], - "time_consumption": 0.2979135513305664 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954669.7297575, - "msecs": 729.75754737854, - "relativeCreated": 55625.99992752075, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:49,729", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954669.729518, - "msecs": 729.517936706543, - "relativeCreated": 55625.760316848755, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:49,729" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954669.7296524, - "msecs": 729.6524047851562, - "relativeCreated": 55625.89478492737, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:49,729" - } - ], - "time_consumption": 0.00010514259338378906 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954669.7301147, - "msecs": 730.1146984100342, - "relativeCreated": 55626.357078552246, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:49,730", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954669.7299283, - "msecs": 729.9282550811768, - "relativeCreated": 55626.17063522339, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:49,729" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954669.7300265, - "msecs": 730.0264835357666, - "relativeCreated": 55626.26886367798, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:49,730" - } - ], - "time_consumption": 8.821487426757812e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954670.0312347, - "msecs": 31.2347412109375, - "relativeCreated": 55927.47712135315, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:50,031", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954669.7304046, - "msecs": 730.4046154022217, - "relativeCreated": 55626.64699554443, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/desk_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:49,730" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.7314923, - "msecs": 731.492280960083, - "relativeCreated": 55627.734661102295, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:49,731" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.7331944, - "msecs": 733.1943511962891, - "relativeCreated": 55629.4367313385, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:49,733" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954669.7336223, - "msecs": 733.6223125457764, - "relativeCreated": 55629.86469268799, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:49,733" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.7346578, - "msecs": 734.6577644348145, - "relativeCreated": 55630.90014457703, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:49,734" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.7775214, - "msecs": 777.5213718414307, - "relativeCreated": 55673.76375198364, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:49,777" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954669.7781646, - "msecs": 778.1646251678467, - "relativeCreated": 55674.40700531006, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:49,778" - } - ], - "time_consumption": 0.2530701160430908 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954670.0318513, - "msecs": 31.85129165649414, - "relativeCreated": 55928.093671798706, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:50,031", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954670.0316055, - "msecs": 31.60548210144043, - "relativeCreated": 55927.84786224365, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:50,031" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954670.031752, - "msecs": 31.75210952758789, - "relativeCreated": 55927.9944896698, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:50,031" - } - ], - "time_consumption": 9.918212890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "__test_brightness__", - "created": 1675954670.3340197, - "msecs": 334.01966094970703, - "relativeCreated": 56230.26204109192, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:50,334", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954670.032107, - "msecs": 32.10711479187012, - "relativeCreated": 55928.34949493408, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", - "asctime": "2023-02-09 15:57:50,032" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.0331023, - "msecs": 33.10227394104004, - "relativeCreated": 55929.34465408325, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", - "asctime": "2023-02-09 15:57:50,033" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.0374677, - "msecs": 37.46771812438965, - "relativeCreated": 55933.7100982666, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:50,037" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.038068, - "msecs": 38.06805610656738, - "relativeCreated": 55934.31043624878, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:50,038" - } - ], - "time_consumption": 0.29595160484313965 - } - ], - "time_consumption": 1.8138208389282227, - "time_start": "2023-02-09 15:57:48,520", - "time_finished": "2023-02-09 15:57:50,334" - }, - "Color temperature test for device and virtual device: zigbee/gfw/dirk/desk_light": { - "name": "__tLogger__", - "msg": "Color temperature test for device and virtual device: zigbee/gfw/dirk/desk_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 81, - "funcName": "test_color_temp", - "created": 1675954670.3347073, - "msecs": 334.70726013183594, - "relativeCreated": 56230.94964027405, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Color temperature test for device and virtual device: zigbee/gfw/dirk/desk_light", - "asctime": "2023-02-09 15:57:50,334", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 88, - "funcName": "__test_color_temp__", - "created": 1675954670.636399, - "msecs": 636.3990306854248, - "relativeCreated": 56532.64141082764, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:50,636", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954670.33507, - "msecs": 335.0698947906494, - "relativeCreated": 56231.31227493286, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", - "asctime": "2023-02-09 15:57:50,335" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954670.3355904, - "msecs": 335.5903625488281, - "relativeCreated": 56231.83274269104, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:50,335" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.336446, - "msecs": 336.44604682922363, - "relativeCreated": 56232.688426971436, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", - "asctime": "2023-02-09 15:57:50,336" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.336952, - "msecs": 336.95197105407715, - "relativeCreated": 56233.19435119629, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:50,336" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.3817081, - "msecs": 381.70814514160156, - "relativeCreated": 56277.95052528381, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:50,381" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.3825107, - "msecs": 382.5106620788574, - "relativeCreated": 56278.75304222107, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:50,382" - } - ], - "time_consumption": 0.2538883686065674 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954670.6369534, - "msecs": 636.9533538818359, - "relativeCreated": 56533.19573402405, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:50,636", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954670.6367378, - "msecs": 636.7378234863281, - "relativeCreated": 56532.98020362854, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:50,636" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954670.6368577, - "msecs": 636.8577480316162, - "relativeCreated": 56533.10012817383, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:50,636" - } - ], - "time_consumption": 9.560585021972656e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954670.9383044, - "msecs": 938.3044242858887, - "relativeCreated": 56834.5468044281, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:50,938", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954670.6373045, - "msecs": 637.3045444488525, - "relativeCreated": 56533.546924591064, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:50,637" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.6382637, - "msecs": 638.2637023925781, - "relativeCreated": 56534.50608253479, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:50,638" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.640407, - "msecs": 640.4070854187012, - "relativeCreated": 56536.64946556091, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:50,640" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.640993, - "msecs": 640.9931182861328, - "relativeCreated": 56537.235498428345, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:50,640" - } - ], - "time_consumption": 0.29731130599975586 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954670.9389567, - "msecs": 938.9567375183105, - "relativeCreated": 56835.19911766052, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:50,938", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954670.9387178, - "msecs": 938.7178421020508, - "relativeCreated": 56834.96022224426, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:50,938" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954670.9388542, - "msecs": 938.8542175292969, - "relativeCreated": 56835.09659767151, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:50,938" - } - ], - "time_consumption": 0.00010251998901367188 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954670.9393158, - "msecs": 939.3157958984375, - "relativeCreated": 56835.55817604065, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:50,939", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954670.9391282, - "msecs": 939.1281604766846, - "relativeCreated": 56835.3705406189, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:50,939" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954670.9392273, - "msecs": 939.2273426055908, - "relativeCreated": 56835.4697227478, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:50,939" - } - ], - "time_consumption": 8.845329284667969e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954671.240541, - "msecs": 240.5409812927246, - "relativeCreated": 57136.78336143494, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:51,240", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954670.9396086, - "msecs": 939.6085739135742, - "relativeCreated": 56835.850954055786, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:50,939" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.9407089, - "msecs": 940.7088756561279, - "relativeCreated": 56836.95125579834, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:50,940" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.942415, - "msecs": 942.4149990081787, - "relativeCreated": 56838.65737915039, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:50,942" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954670.9428637, - "msecs": 942.8637027740479, - "relativeCreated": 56839.10608291626, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:50,942" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.9438875, - "msecs": 943.88747215271, - "relativeCreated": 56840.12985229492, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:50,943" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.9894106, - "msecs": 989.4106388092041, - "relativeCreated": 56885.653018951416, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:50,989" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954670.9901474, - "msecs": 990.1473522186279, - "relativeCreated": 56886.38973236084, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:50,990" - } - ], - "time_consumption": 0.2503936290740967 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954671.2412248, - "msecs": 241.2247657775879, - "relativeCreated": 57137.4671459198, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:51,241", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954671.2409337, - "msecs": 240.93365669250488, - "relativeCreated": 57137.17603683472, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:51,240" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954671.2411077, - "msecs": 241.10770225524902, - "relativeCreated": 57137.35008239746, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:51,241" - } - ], - "time_consumption": 0.00011706352233886719 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954671.2416298, - "msecs": 241.62983894348145, - "relativeCreated": 57137.87221908569, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:51,241", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954671.241402, - "msecs": 241.40191078186035, - "relativeCreated": 57137.64429092407, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:57:51,241" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954671.2415378, - "msecs": 241.53780937194824, - "relativeCreated": 57137.78018951416, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:57:51,241" - } - ], - "time_consumption": 9.202957153320312e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954671.5438924, - "msecs": 543.8923835754395, - "relativeCreated": 57440.13476371765, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:57:51,543", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954671.2419765, - "msecs": 241.97649955749512, - "relativeCreated": 57138.21887969971, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:51,241" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.243007, - "msecs": 243.00694465637207, - "relativeCreated": 57139.249324798584, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:51,243" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.245579, - "msecs": 245.57900428771973, - "relativeCreated": 57141.82138442993, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:57:51,245" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.2461734, - "msecs": 246.17338180541992, - "relativeCreated": 57142.41576194763, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:51,246" - } - ], - "time_consumption": 0.29771900177001953 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954671.5444746, - "msecs": 544.4746017456055, - "relativeCreated": 57440.71698188782, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:51,544", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954671.5442634, - "msecs": 544.2633628845215, - "relativeCreated": 57440.50574302673, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:57:51,544" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954671.544381, - "msecs": 544.3809032440186, - "relativeCreated": 57440.62328338623, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:57:51,544" - } - ], - "time_consumption": 9.369850158691406e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954671.5448265, - "msecs": 544.8265075683594, - "relativeCreated": 57441.06888771057, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:57:51,544", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954671.5446239, - "msecs": 544.623851776123, - "relativeCreated": 57440.866231918335, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:57:51,544" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954671.5447452, - "msecs": 544.7452068328857, - "relativeCreated": 57440.9875869751, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:57:51,544" - } - ], - "time_consumption": 8.130073547363281e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954671.845919, - "msecs": 845.9188938140869, - "relativeCreated": 57742.1612739563, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:57:51,845", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954671.5451314, - "msecs": 545.1314449310303, - "relativeCreated": 57441.37382507324, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/desk_light/color_temp and payload 5", - "asctime": "2023-02-09 15:57:51,545" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.546102, - "msecs": 546.1020469665527, - "relativeCreated": 57442.344427108765, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:57:51,546" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.5475922, - "msecs": 547.5921630859375, - "relativeCreated": 57443.83454322815, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:57:51,547" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954671.547966, - "msecs": 547.9660034179688, - "relativeCreated": 57444.20838356018, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:51,547" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.5488625, - "msecs": 548.8624572753906, - "relativeCreated": 57445.1048374176, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:51,548" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.591917, - "msecs": 591.9170379638672, - "relativeCreated": 57488.15941810608, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:51,591" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.5925627, - "msecs": 592.5626754760742, - "relativeCreated": 57488.805055618286, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:51,592" - } - ], - "time_consumption": 0.2533562183380127 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954671.8465283, - "msecs": 846.5282917022705, - "relativeCreated": 57742.77067184448, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:51,846", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954671.8462853, - "msecs": 846.285343170166, - "relativeCreated": 57742.52772331238, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:57:51,846" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954671.8464315, - "msecs": 846.4314937591553, - "relativeCreated": 57742.67387390137, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:57:51,846" - } - ], - "time_consumption": 9.679794311523438e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 105, - "funcName": "__test_color_temp__", - "created": 1675954672.1487076, - "msecs": 148.70762825012207, - "relativeCreated": 58044.950008392334, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:52,148", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954671.8467832, - "msecs": 846.7831611633301, - "relativeCreated": 57743.02554130554, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", - "asctime": "2023-02-09 15:57:51,846" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.847771, - "msecs": 847.7709293365479, - "relativeCreated": 57744.01330947876, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", - "asctime": "2023-02-09 15:57:51,847" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.8515134, - "msecs": 851.5133857727051, - "relativeCreated": 57747.75576591492, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:51,851" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954671.8521016, - "msecs": 852.1015644073486, - "relativeCreated": 57748.34394454956, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:51,852" - } - ], - "time_consumption": 0.29660606384277344 - } - ], - "time_consumption": 1.8140003681182861, - "time_start": "2023-02-09 15:57:50,334", - "time_finished": "2023-02-09 15:57:52,148" - }, - "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/2": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/2", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954672.1494308, - "msecs": 149.4307518005371, - "relativeCreated": 58045.67313194275, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/2", - "asctime": "2023-02-09 15:57:52,149", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954672.149902, - "msecs": 149.9021053314209, - "relativeCreated": 58046.14448547363, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:52,149", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954672.1496809, - "msecs": 149.68085289001465, - "relativeCreated": 58045.92323303223, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:52,149" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954672.1497977, - "msecs": 149.7976779937744, - "relativeCreated": 58046.040058135986, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:52,149" - } - ], - "time_consumption": 0.00010442733764648438 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954672.4515183, - "msecs": 451.51829719543457, - "relativeCreated": 58347.76067733765, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:52,451", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954672.1501513, - "msecs": 150.15125274658203, - "relativeCreated": 58046.393632888794, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", - "asctime": "2023-02-09 15:57:52,150" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954672.1506312, - "msecs": 150.63118934631348, - "relativeCreated": 58046.873569488525, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:52,150" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.151488, - "msecs": 151.4880657196045, - "relativeCreated": 58047.73044586182, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", - "asctime": "2023-02-09 15:57:52,151" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.1519928, - "msecs": 151.9927978515625, - "relativeCreated": 58048.235177993774, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:52,151" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.197459, - "msecs": 197.45898246765137, - "relativeCreated": 58093.70136260986, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:52,197" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.1977725, - "msecs": 197.77250289916992, - "relativeCreated": 58094.01488304138, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:52,197" - } - ], - "time_consumption": 0.25374579429626465 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954672.4520884, - "msecs": 452.0883560180664, - "relativeCreated": 58348.33073616028, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:52,452", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954672.4518707, - "msecs": 451.8706798553467, - "relativeCreated": 58348.11305999756, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:52,451" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954672.4519897, - "msecs": 451.98965072631836, - "relativeCreated": 58348.23203086853, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:52,451" - } - ], - "time_consumption": 9.870529174804688e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954672.4524097, - "msecs": 452.4097442626953, - "relativeCreated": 58348.65212440491, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:52,452", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954672.4522443, - "msecs": 452.2442817687988, - "relativeCreated": 58348.48666191101, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:52,452" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954672.4523335, - "msecs": 452.3334503173828, - "relativeCreated": 58348.575830459595, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:52,452" - } - ], - "time_consumption": 7.62939453125e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954672.7545319, - "msecs": 754.5318603515625, - "relativeCreated": 58650.774240493774, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:52,754", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954672.4526856, - "msecs": 452.6855945587158, - "relativeCreated": 58348.92797470093, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/desk_light/state and payload false", - "asctime": "2023-02-09 15:57:52,452" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.4537244, - "msecs": 453.7243843078613, - "relativeCreated": 58349.96676445007, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:52,453" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.4551346, - "msecs": 455.13463020324707, - "relativeCreated": 58351.37701034546, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2/set and payload b'false'", - "asctime": "2023-02-09 15:57:52,455" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954672.4554412, - "msecs": 455.4412364959717, - "relativeCreated": 58351.68361663818, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", - "asctime": "2023-02-09 15:57:52,455" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.456543, - "msecs": 456.54296875, - "relativeCreated": 58352.78534889221, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", - "asctime": "2023-02-09 15:57:52,456" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.542163, - "msecs": 542.1628952026367, - "relativeCreated": 58438.40527534485, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:52,542" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.5428874, - "msecs": 542.8874492645264, - "relativeCreated": 58439.12982940674, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:52,542" - } - ], - "time_consumption": 0.21164441108703613 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954672.7551265, - "msecs": 755.1264762878418, - "relativeCreated": 58651.368856430054, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:52,755", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954672.7549086, - "msecs": 754.908561706543, - "relativeCreated": 58651.150941848755, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:52,754" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954672.7550316, - "msecs": 755.0315856933594, - "relativeCreated": 58651.27396583557, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:52,755" - } - ], - "time_consumption": 9.489059448242188e-05 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954672.7554798, - "msecs": 755.4798126220703, - "relativeCreated": 58651.72219276428, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:52,755", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954672.7553144, - "msecs": 755.3143501281738, - "relativeCreated": 58651.556730270386, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:57:52,755" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954672.755402, - "msecs": 755.4020881652832, - "relativeCreated": 58651.644468307495, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:57:52,755" - } - ], - "time_consumption": 7.772445678710938e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954673.0570955, - "msecs": 57.09552764892578, - "relativeCreated": 58953.33790779114, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:57:53,057", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954672.7557144, - "msecs": 755.7144165039062, - "relativeCreated": 58651.95679664612, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload true", - "asctime": "2023-02-09 15:57:52,755" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954672.7562048, - "msecs": 756.2048435211182, - "relativeCreated": 58652.44722366333, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/desk_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:52,756" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.757078, - "msecs": 757.0779323577881, - "relativeCreated": 58653.3203125, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'true'", - "asctime": "2023-02-09 15:57:52,757" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.desk_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/desk_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.7575839, - "msecs": 757.5838565826416, - "relativeCreated": 58653.82623672485, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/desk_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:52,757" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.8069398, - "msecs": 806.9398403167725, - "relativeCreated": 58703.182220458984, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:52,806" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954672.8076649, - "msecs": 807.6648712158203, - "relativeCreated": 58703.90725135803, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:52,807" - } - ], - "time_consumption": 0.24943065643310547 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954673.0576944, - "msecs": 57.694435119628906, - "relativeCreated": 58953.93681526184, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:53,057", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954673.0574481, - "msecs": 57.44814872741699, - "relativeCreated": 58953.69052886963, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:57:53,057" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954673.0575998, - "msecs": 57.599782943725586, - "relativeCreated": 58953.84216308594, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:57:53,057" - } - ], - "time_consumption": 9.465217590332031e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954673.0580206, - "msecs": 58.020591735839844, - "relativeCreated": 58954.26297187805, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:53,058", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954673.057848, - "msecs": 57.84797668457031, - "relativeCreated": 58954.09035682678, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:57:53,057" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954673.057944, - "msecs": 57.94405937194824, - "relativeCreated": 58954.18643951416, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:57:53,057" - } - ], - "time_consumption": 7.653236389160156e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954673.3601663, - "msecs": 360.1663112640381, - "relativeCreated": 59256.40869140625, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:57:53,360", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954673.0583048, - "msecs": 58.304786682128906, - "relativeCreated": 58954.54716682434, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/desk_light/state and payload false", - "asctime": "2023-02-09 15:57:53,058" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.0592804, - "msecs": 59.2803955078125, - "relativeCreated": 58955.522775650024, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:53,059" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.0607488, - "msecs": 60.74881553649902, - "relativeCreated": 58956.99119567871, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2/set and payload b'false'", - "asctime": "2023-02-09 15:57:53,060" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954673.061072, - "msecs": 61.07211112976074, - "relativeCreated": 58957.31449127197, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/2 and payload false", - "asctime": "2023-02-09 15:57:53,061" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/2", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.0620487, - "msecs": 62.04867362976074, - "relativeCreated": 58958.29105377197, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/2 and payload b'false'", - "asctime": "2023-02-09 15:57:53,062" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.1461565, - "msecs": 146.15654945373535, - "relativeCreated": 59042.39892959595, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:53,146" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.desk_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/desk_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.1468441, - "msecs": 146.84414863586426, - "relativeCreated": 59043.086528778076, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:53,146" - } - ], - "time_consumption": 0.21332216262817383 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954673.360768, - "msecs": 360.76807975769043, - "relativeCreated": 59257.0104598999, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:53,360", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954673.3605478, - "msecs": 360.5477809906006, - "relativeCreated": 59256.79016113281, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:57:53,360" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954673.360672, - "msecs": 360.6719970703125, - "relativeCreated": 59256.914377212524, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:57:53,360" - } - ], - "time_consumption": 9.608268737792969e-05 - } - ], - "time_consumption": 1.2113373279571533, - "time_start": "2023-02-09 15:57:52,149", - "time_finished": "2023-02-09 15:57:53,360" - }, - "Away mode test: zigbee/gfw/dirk/heating_valve": { - "name": "__tLogger__", - "msg": "Away mode test: zigbee/gfw/dirk/heating_valve", + "msg": "Away mode test: zigbee/gfw/marion/heating_valve", "args": null, "levelname": "INFO", "levelno": 20, @@ -80227,15 +88359,15 @@ "stack_info": null, "lineno": 101, "funcName": "test_away_mode", - "created": 1675954673.3613198, - "msecs": 361.31978034973145, - "relativeCreated": 59257.56216049194, - "thread": 139894075555840, + "created": 1676441680.9480386, + "msecs": 948.0385780334473, + "relativeCreated": 77951.55382156372, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Away mode test: zigbee/gfw/dirk/heating_valve", - "asctime": "2023-02-09 15:57:53,361", + "process": 509276, + "message": "Away mode test: zigbee/gfw/marion/heating_valve", + "asctime": "2023-02-15 07:14:40,948", "moduleLogger": [], "testcaseLogger": [ { @@ -80252,22 +88384,22 @@ "stack_info": null, "lineno": 106, "funcName": "__test_away_mode__", - "created": 1675954673.6625845, - "msecs": 662.5845432281494, - "relativeCreated": 59558.82692337036, - "thread": 139894075555840, + "created": 1676441681.249963, + "msecs": 249.96304512023926, + "relativeCreated": 78253.47828865051, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:53,662", + "asctime": "2023-02-15 07:14:41,249", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", - "true" + "videv/gfw/marion/heating_valve/set_default_temperature/set", + "null" ], "levelname": "DEBUG", "levelno": 10, @@ -80279,22 +88411,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954673.361633, - "msecs": 361.6330623626709, - "relativeCreated": 59257.87544250488, - "thread": 139894075555840, + "created": 1676441680.9483523, + "msecs": 948.3523368835449, + "relativeCreated": 77951.86758041382, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:53,361" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:14:40,948" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", - "b'true'" + "videv/gfw/marion/heating_valve/user_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -80306,22 +88438,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.362618, - "msecs": 362.61796951293945, - "relativeCreated": 59258.86034965515, - "thread": 139894051313216, + "created": 1676441680.9551997, + "msecs": 955.1997184753418, + "relativeCreated": 77958.71496200562, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:53,362" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:40,955" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "b'25'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" ], "levelname": "DEBUG", "levelno": 10, @@ -80333,76 +88465,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.3801064, - "msecs": 380.10644912719727, - "relativeCreated": 59276.34882926941, - "thread": 139894051313216, + "created": 1676441680.9557123, + "msecs": 955.7123184204102, + "relativeCreated": 77959.22756195068, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:53,380" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:14:40,955" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.3807454, - "msecs": 380.74541091918945, - "relativeCreated": 59276.9877910614, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:53,380" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 25}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.3818326, - "msecs": 381.8325996398926, - "relativeCreated": 59278.074979782104, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", - "asctime": "2023-02-09 15:57:53,381" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -80414,22 +88492,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954673.3821537, - "msecs": 382.1537494659424, - "relativeCreated": 59278.396129608154, - "thread": 139894051313216, + "created": 1676441680.955821, + "msecs": 955.8210372924805, + "relativeCreated": 77959.33628082275, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:53,382" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:40,955" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'25'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -80441,22 +88519,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.3828955, - "msecs": 382.89546966552734, - "relativeCreated": 59279.13784980774, - "thread": 139894051313216, + "created": 1676441680.9560626, + "msecs": 956.0625553131104, + "relativeCreated": 77959.57779884338, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:53,382" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:40,956" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -80468,99 +88546,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.3835843, - "msecs": 383.58426094055176, - "relativeCreated": 59279.826641082764, - "thread": 139894051313216, + "created": 1676441680.9564035, + "msecs": 956.4034938812256, + "relativeCreated": 77959.9187374115, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:53,383" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.384119, - "msecs": 384.11903381347656, - "relativeCreated": 59280.36141395569, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:53,384" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.4286294, - "msecs": 428.62939834594727, - "relativeCreated": 59324.87177848816, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:53,428" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.4701407, - "msecs": 470.1406955718994, - "relativeCreated": 59366.38307571411, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:53,470" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:40,956" } ], - "time_consumption": 0.19244384765625 + "time_consumption": 0.29355955123901367 }, { "name": "__tLogger__", @@ -80579,15 +88576,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954673.6631417, - "msecs": 663.1417274475098, - "relativeCreated": 59559.38410758972, - "thread": 139894075555840, + "created": 1676441681.2507699, + "msecs": 250.76985359191895, + "relativeCreated": 78254.28509712219, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Away mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:53,663", + "asctime": "2023-02-15 07:14:41,250", "moduleLogger": [ { "name": "__unittest__", @@ -80607,15 +88604,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954673.6629272, - "msecs": 662.9271507263184, - "relativeCreated": 59559.16953086853, - "thread": 139894075555840, + "created": 1676441681.2504056, + "msecs": 250.40555000305176, + "relativeCreated": 78253.92079353333, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Away mode): False ()", - "asctime": "2023-02-09 15:57:53,662" + "asctime": "2023-02-15 07:14:41,250" }, { "name": "__unittest__", @@ -80636,18 +88633,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954673.6630461, - "msecs": 663.04612159729, - "relativeCreated": 59559.2885017395, - "thread": 139894075555840, + "created": 1676441681.2506151, + "msecs": 250.61511993408203, + "relativeCreated": 78254.13036346436, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Away mode): result = False ()", - "asctime": "2023-02-09 15:57:53,663" + "asctime": "2023-02-15 07:14:41,250" } ], - "time_consumption": 9.560585021972656e-05 + "time_consumption": 0.00015473365783691406 }, { "name": "__tLogger__", @@ -80663,21 +88660,21 @@ "stack_info": null, "lineno": 113, "funcName": "__test_away_mode__", - "created": 1675954673.9653723, - "msecs": 965.3723239898682, - "relativeCreated": 59861.61470413208, - "thread": 139894075555840, + "created": 1676441681.5523305, + "msecs": 552.330493927002, + "relativeCreated": 78555.84573745728, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Activating away mode", - "asctime": "2023-02-09 15:57:53,965", + "asctime": "2023-02-15 07:14:41,552", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/away_mode", + "videv/gfw/marion/heating_valve/away_mode/set", "true" ], "levelname": "DEBUG", @@ -80690,22 +88687,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954673.6634734, - "msecs": 663.47336769104, - "relativeCreated": 59559.71574783325, - "thread": 139894075555840, + "created": 1676441681.2511613, + "msecs": 251.1613368988037, + "relativeCreated": 78254.67658042908, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/away_mode and payload true", - "asctime": "2023-02-09 15:57:53,663" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/away_mode/set and payload true", + "asctime": "2023-02-15 07:14:41,251" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/away_mode", - "b'true'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 18}'" ], "levelname": "DEBUG", "levelno": 10, @@ -80717,49 +88714,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.6644475, - "msecs": 664.447546005249, - "relativeCreated": 59560.68992614746, - "thread": 139894051313216, + "created": 1676441681.2645388, + "msecs": 264.5387649536133, + "relativeCreated": 78268.05400848389, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'true'", - "asctime": "2023-02-09 15:57:53,664" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", + "asctime": "2023-02-15 07:14:41,264" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 20}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.6793728, - "msecs": 679.3727874755859, - "relativeCreated": 59575.6151676178, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", - "asctime": "2023-02-09 15:57:53,679" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -80771,22 +88741,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954673.679809, - "msecs": 679.8090934753418, - "relativeCreated": 59576.051473617554, - "thread": 139894051313216, + "created": 1676441681.2649996, + "msecs": 264.9996280670166, + "relativeCreated": 78268.51487159729, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:53,679" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:41,264" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'20'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'18'" ], "levelname": "DEBUG", "levelno": 10, @@ -80798,22 +88768,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.6803892, - "msecs": 680.3891658782959, - "relativeCreated": 59576.63154602051, - "thread": 139894051313216, + "created": 1676441681.2658656, + "msecs": 265.8655643463135, + "relativeCreated": 78269.38080787659, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", - "asctime": "2023-02-09 15:57:53,680" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:41,265" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -80825,21 +88795,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.6810935, - "msecs": 681.0934543609619, - "relativeCreated": 59577.335834503174, - "thread": 139894051313216, + "created": 1676441681.2670877, + "msecs": 267.0876979827881, + "relativeCreated": 78270.60294151306, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:53,681" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:41,267" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/away_mode", + "videv/gfw/marion/heating_valve/away_mode", "b'true'" ], "levelname": "DEBUG", @@ -80852,126 +88822,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.6816216, - "msecs": 681.6215515136719, - "relativeCreated": 59577.863931655884, - "thread": 139894051313216, + "created": 1676441681.3111029, + "msecs": 311.10286712646484, + "relativeCreated": 78314.61811065674, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'true'", - "asctime": "2023-02-09 15:57:53,681" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.6821258, - "msecs": 682.1258068084717, - "relativeCreated": 59578.36818695068, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:53,682" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.6826339, - "msecs": 682.6338768005371, - "relativeCreated": 59578.87625694275, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:53,682" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.7255995, - "msecs": 725.5995273590088, - "relativeCreated": 59621.84190750122, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:53,725" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.7658918, - "msecs": 765.8917903900146, - "relativeCreated": 59662.13417053223, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:53,765" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'true'", + "asctime": "2023-02-15 07:14:41,311" } ], - "time_consumption": 0.19948053359985352 + "time_consumption": 0.2412276268005371 }, { "name": "__tLogger__", @@ -80990,15 +88852,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954673.966023, - "msecs": 966.0229682922363, - "relativeCreated": 59862.26534843445, - "thread": 139894075555840, + "created": 1676441681.553051, + "msecs": 553.0509948730469, + "relativeCreated": 78556.56623840332, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Away mode is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:53,966", + "asctime": "2023-02-15 07:14:41,553", "moduleLogger": [ { "name": "__unittest__", @@ -81018,15 +88880,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954673.965773, - "msecs": 965.7731056213379, - "relativeCreated": 59862.01548576355, - "thread": 139894075555840, + "created": 1676441681.5527678, + "msecs": 552.7677536010742, + "relativeCreated": 78556.28299713135, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Away mode): True ()", - "asctime": "2023-02-09 15:57:53,965" + "asctime": "2023-02-15 07:14:41,552" }, { "name": "__unittest__", @@ -81047,24 +88909,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954673.965912, - "msecs": 965.9121036529541, - "relativeCreated": 59862.154483795166, - "thread": 139894075555840, + "created": 1676441681.5529232, + "msecs": 552.9232025146484, + "relativeCreated": 78556.43844604492, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Away mode): result = True ()", - "asctime": "2023-02-09 15:57:53,965" + "asctime": "2023-02-15 07:14:41,552" } ], - "time_consumption": 0.00011086463928222656 + "time_consumption": 0.0001277923583984375 }, { "name": "__tLogger__", "msg": "Temperature setpoint is correct (Content %s and Type is %s).", "args": [ - "20", + "18", "" ], "levelname": "INFO", @@ -81077,22 +88939,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954673.9664392, - "msecs": 966.4392471313477, - "relativeCreated": 59862.68162727356, - "thread": 139894075555840, + "created": 1676441681.553505, + "msecs": 553.5049438476562, + "relativeCreated": 78557.02018737793, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 20 and Type is ).", - "asctime": "2023-02-09 15:57:53,966", + "process": 509276, + "message": "Temperature setpoint is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:14:41,553", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Temperature setpoint", - "20", + "18", "" ], "levelname": "DEBUG", @@ -81105,15 +88967,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954673.966238, - "msecs": 966.2380218505859, - "relativeCreated": 59862.4804019928, - "thread": 139894075555840, + "created": 1676441681.5532477, + "msecs": 553.2476902008057, + "relativeCreated": 78556.76293373108, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 20 ()", - "asctime": "2023-02-09 15:57:53,966" + "process": 509276, + "message": "Result (Temperature setpoint): 18 ()", + "asctime": "2023-02-15 07:14:41,553" }, { "name": "__unittest__", @@ -81121,7 +88983,7 @@ "args": [ "Temperature setpoint", "=", - "20", + "18", "" ], "levelname": "DEBUG", @@ -81134,18 +88996,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954673.9663436, - "msecs": 966.3436412811279, - "relativeCreated": 59862.58602142334, - "thread": 139894075555840, + "created": 1676441681.5533617, + "msecs": 553.3616542816162, + "relativeCreated": 78556.87689781189, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 20 ()", - "asctime": "2023-02-09 15:57:53,966" + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 18 ()", + "asctime": "2023-02-15 07:14:41,553" } ], - "time_consumption": 9.560585021972656e-05 + "time_consumption": 0.00014328956604003906 }, { "name": "__tLogger__", @@ -81161,21 +89023,21 @@ "stack_info": null, "lineno": 119, "funcName": "__test_away_mode__", - "created": 1675954674.2677388, - "msecs": 267.73881912231445, - "relativeCreated": 60163.98119926453, - "thread": 139894075555840, + "created": 1676441681.8547513, + "msecs": 854.7513484954834, + "relativeCreated": 78858.26659202576, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Deactivating away mode", - "asctime": "2023-02-09 15:57:54,267", + "asctime": "2023-02-15 07:14:41,854", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/away_mode", + "videv/gfw/marion/heating_valve/away_mode/set", "false" ], "levelname": "DEBUG", @@ -81188,22 +89050,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954673.9667323, - "msecs": 966.7322635650635, - "relativeCreated": 59862.974643707275, - "thread": 139894075555840, + "created": 1676441681.5538445, + "msecs": 553.8444519042969, + "relativeCreated": 78557.35969543457, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/away_mode and payload false", - "asctime": "2023-02-09 15:57:53,966" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/away_mode/set and payload false", + "asctime": "2023-02-15 07:14:41,553" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/away_mode", - "b'false'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" ], "levelname": "DEBUG", "levelno": 10, @@ -81215,49 +89077,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.9678562, - "msecs": 967.8561687469482, - "relativeCreated": 59864.09854888916, - "thread": 139894051313216, + "created": 1676441681.5658908, + "msecs": 565.8907890319824, + "relativeCreated": 78569.40603256226, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'false'", - "asctime": "2023-02-09 15:57:53,967" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:14:41,565" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 25}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.979648, - "msecs": 979.6481132507324, - "relativeCreated": 59875.890493392944, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", - "asctime": "2023-02-09 15:57:53,979" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -81269,22 +89104,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954673.980129, - "msecs": 980.1290035247803, - "relativeCreated": 59876.37138366699, - "thread": 139894051313216, + "created": 1676441681.5664115, + "msecs": 566.4114952087402, + "relativeCreated": 78569.92673873901, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:53,980" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:41,566" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'25'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -81296,48 +89131,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.9807985, - "msecs": 980.7984828948975, - "relativeCreated": 59877.04086303711, - "thread": 139894051313216, + "created": 1676441681.5673282, + "msecs": 567.3282146453857, + "relativeCreated": 78570.84345817566, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:53,980" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:41,567" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.9815116, - "msecs": 981.5115928649902, - "relativeCreated": 59877.7539730072, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:53,981" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/away_mode", + "videv/gfw/marion/heating_valve/away_mode", "b'false'" ], "levelname": "DEBUG", @@ -81350,22 +89158,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.9820476, - "msecs": 982.0475578308105, - "relativeCreated": 59878.28993797302, - "thread": 139894051313216, + "created": 1676441681.5682662, + "msecs": 568.2661533355713, + "relativeCreated": 78571.78139686584, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'false'", - "asctime": "2023-02-09 15:57:53,982" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'false'", + "asctime": "2023-02-15 07:14:41,568" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -81377,99 +89185,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954673.9825425, - "msecs": 982.5425148010254, - "relativeCreated": 59878.78489494324, - "thread": 139894051313216, + "created": 1676441681.569007, + "msecs": 569.0069198608398, + "relativeCreated": 78572.52216339111, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:53,982" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954673.9830322, - "msecs": 983.0322265625, - "relativeCreated": 59879.27460670471, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:53,983" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.0293581, - "msecs": 29.3581485748291, - "relativeCreated": 59925.60052871704, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:54,029" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.0700033, - "msecs": 70.00327110290527, - "relativeCreated": 59966.24565124512, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:54,070" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:41,569" } ], - "time_consumption": 0.19773554801940918 + "time_consumption": 0.28574442863464355 }, { "name": "__tLogger__", @@ -81488,15 +89215,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954674.2682984, - "msecs": 268.2983875274658, - "relativeCreated": 60164.54076766968, - "thread": 139894075555840, + "created": 1676441681.8553684, + "msecs": 855.3683757781982, + "relativeCreated": 78858.88361930847, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Away mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:54,268", + "asctime": "2023-02-15 07:14:41,855", "moduleLogger": [ { "name": "__unittest__", @@ -81516,15 +89243,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954674.2680824, - "msecs": 268.0823802947998, - "relativeCreated": 60164.32476043701, - "thread": 139894075555840, + "created": 1676441681.8551288, + "msecs": 855.1287651062012, + "relativeCreated": 78858.64400863647, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Away mode): False ()", - "asctime": "2023-02-09 15:57:54,268" + "asctime": "2023-02-15 07:14:41,855" }, { "name": "__unittest__", @@ -81545,24 +89272,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954674.2682033, - "msecs": 268.2032585144043, - "relativeCreated": 60164.445638656616, - "thread": 139894075555840, + "created": 1676441681.8552604, + "msecs": 855.2603721618652, + "relativeCreated": 78858.77561569214, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Away mode): result = False ()", - "asctime": "2023-02-09 15:57:54,268" + "asctime": "2023-02-15 07:14:41,855" } ], - "time_consumption": 9.512901306152344e-05 + "time_consumption": 0.00010800361633300781 }, { "name": "__tLogger__", "msg": "Temperature setpoint is correct (Content %s and Type is %s).", "args": [ - "25", + "23", "" ], "levelname": "INFO", @@ -81575,22 +89302,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954674.268615, - "msecs": 268.6150074005127, - "relativeCreated": 60164.857387542725, - "thread": 139894075555840, + "created": 1676441681.8557749, + "msecs": 855.7748794555664, + "relativeCreated": 78859.29012298584, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 25 and Type is ).", - "asctime": "2023-02-09 15:57:54,268", + "process": 509276, + "message": "Temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:41,855", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Temperature setpoint", - "25", + "23", "" ], "levelname": "DEBUG", @@ -81603,15 +89330,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954674.268449, - "msecs": 268.449068069458, - "relativeCreated": 60164.69144821167, - "thread": 139894075555840, + "created": 1676441681.8555696, + "msecs": 855.56960105896, + "relativeCreated": 78859.08484458923, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 25 ()", - "asctime": "2023-02-09 15:57:54,268" + "process": 509276, + "message": "Result (Temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:14:41,855" }, { "name": "__unittest__", @@ -81619,7 +89346,7 @@ "args": [ "Temperature setpoint", "=", - "25", + "23", "" ], "levelname": "DEBUG", @@ -81632,27 +89359,27 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954674.2685366, - "msecs": 268.5365676879883, - "relativeCreated": 60164.7789478302, - "thread": 139894075555840, + "created": 1676441681.8556855, + "msecs": 855.6854724884033, + "relativeCreated": 78859.20071601868, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 25 ()", - "asctime": "2023-02-09 15:57:54,268" + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:14:41,855" } ], - "time_consumption": 7.843971252441406e-05 + "time_consumption": 8.940696716308594e-05 } ], - "time_consumption": 0.9072952270507812, - "time_start": "2023-02-09 15:57:53,361", - "time_finished": "2023-02-09 15:57:54,268" + "time_consumption": 0.9077363014221191, + "time_start": "2023-02-15 07:14:40,948", + "time_finished": "2023-02-15 07:14:41,855" }, - "Boost mode test: zigbee/gfw/dirk/heating_valve": { + "Boost mode test: zigbee/gfw/marion/heating_valve": { "name": "__tLogger__", - "msg": "Boost mode test: zigbee/gfw/dirk/heating_valve", + "msg": "Boost mode test: zigbee/gfw/marion/heating_valve", "args": null, "levelname": "INFO", "levelno": 20, @@ -81664,15 +89391,15 @@ "stack_info": null, "lineno": 128, "funcName": "test_boost_mode", - "created": 1675954674.2690678, - "msecs": 269.06776428222656, - "relativeCreated": 60165.31014442444, - "thread": 139894075555840, + "created": 1676441681.8561769, + "msecs": 856.1768531799316, + "relativeCreated": 78859.6920967102, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Boost mode test: zigbee/gfw/dirk/heating_valve", - "asctime": "2023-02-09 15:57:54,269", + "process": 509276, + "message": "Boost mode test: zigbee/gfw/marion/heating_valve", + "asctime": "2023-02-15 07:14:41,856", "moduleLogger": [], "testcaseLogger": [ { @@ -81689,22 +89416,22 @@ "stack_info": null, "lineno": 133, "funcName": "__test_boost_mode__", - "created": 1675954674.5711963, - "msecs": 571.1963176727295, - "relativeCreated": 60467.43869781494, - "thread": 139894075555840, + "created": 1676441682.1575348, + "msecs": 157.53483772277832, + "relativeCreated": 79161.05008125305, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:54,571", + "asctime": "2023-02-15 07:14:42,157", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", - "true" + "videv/gfw/marion/heating_valve/set_default_temperature/set", + "null" ], "levelname": "DEBUG", "levelno": 10, @@ -81716,45 +89443,18 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954674.2693243, - "msecs": 269.32430267333984, - "relativeCreated": 60165.56668281555, - "thread": 139894075555840, + "created": 1676441681.856438, + "msecs": 856.4379215240479, + "relativeCreated": 78859.95316505432, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:54,269" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.2702146, - "msecs": 270.2145576477051, - "relativeCreated": 60166.45693778992, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:54,270" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:14:41,856" } ], - "time_consumption": 0.3009817600250244 + "time_consumption": 0.30109691619873047 }, { "name": "__tLogger__", @@ -81773,15 +89473,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954674.5718336, - "msecs": 571.833610534668, - "relativeCreated": 60468.07599067688, - "thread": 139894075555840, + "created": 1676441682.158247, + "msecs": 158.2469940185547, + "relativeCreated": 79161.76223754883, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Boost timer is correct (Content 0 and Type is ).", - "asctime": "2023-02-09 15:57:54,571", + "asctime": "2023-02-15 07:14:42,158", "moduleLogger": [ { "name": "__unittest__", @@ -81801,15 +89501,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954674.5715878, - "msecs": 571.5878009796143, - "relativeCreated": 60467.830181121826, - "thread": 139894075555840, + "created": 1676441682.157971, + "msecs": 157.97090530395508, + "relativeCreated": 79161.48614883423, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Boost timer): 0 ()", - "asctime": "2023-02-09 15:57:54,571" + "asctime": "2023-02-15 07:14:42,157" }, { "name": "__unittest__", @@ -81830,18 +89530,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954674.5717266, - "msecs": 571.7265605926514, - "relativeCreated": 60467.96894073486, - "thread": 139894075555840, + "created": 1676441682.158121, + "msecs": 158.12110900878906, + "relativeCreated": 79161.63635253906, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Boost timer): result = 0 ()", - "asctime": "2023-02-09 15:57:54,571" + "asctime": "2023-02-15 07:14:42,158" } ], - "time_consumption": 0.00010704994201660156 + "time_consumption": 0.000125885009765625 }, { "name": "__tLogger__", @@ -81857,21 +89557,21 @@ "stack_info": null, "lineno": 140, "funcName": "__test_boost_mode__", - "created": 1675954674.873081, - "msecs": 873.0809688568115, - "relativeCreated": 60769.32334899902, - "thread": 139894075555840, + "created": 1676441682.459815, + "msecs": 459.81502532958984, + "relativeCreated": 79463.33026885986, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Activating boost mode", - "asctime": "2023-02-09 15:57:54,873", + "asctime": "2023-02-15 07:14:42,459", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.start_boost", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.start_boost.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/start_boost", + "videv/gfw/marion/heating_valve/start_boost/set", "true" ], "levelname": "DEBUG", @@ -81884,48 +89584,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954674.5721517, - "msecs": 572.1516609191895, - "relativeCreated": 60468.3940410614, - "thread": 139894075555840, + "created": 1676441682.1586616, + "msecs": 158.6616039276123, + "relativeCreated": 79162.17684745789, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/start_boost and payload true", - "asctime": "2023-02-09 15:57:54,572" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/start_boost/set and payload true", + "asctime": "2023-02-15 07:14:42,158" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.start_boost", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.boost_timer", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/start_boost", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.5732932, - "msecs": 573.2932090759277, - "relativeCreated": 60469.53558921814, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/start_boost and payload b'true'", - "asctime": "2023-02-09 15:57:54,573" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.boost_timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/boost_timer", + "videv/gfw/marion/heating_valve/boost_timer", "b'900'" ], "levelname": "DEBUG", @@ -81938,48 +89611,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954674.5855641, - "msecs": 585.564136505127, - "relativeCreated": 60481.80651664734, - "thread": 139894051313216, + "created": 1676441682.1693392, + "msecs": 169.33917999267578, + "relativeCreated": 79172.85442352295, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/boost_timer and payload b'900'", - "asctime": "2023-02-09 15:57:54,585" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/boost_timer and payload b'900'", + "asctime": "2023-02-15 07:14:42,169" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.58627, - "msecs": 586.2700939178467, - "relativeCreated": 60482.51247406006, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:54,586" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", + "zigbee/gfw/marion/heating_valve/set", "b'{\"current_heating_setpoint\": 30}'" ], "levelname": "DEBUG", @@ -81992,22 +89638,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954674.5868826, - "msecs": 586.8825912475586, - "relativeCreated": 60483.12497138977, - "thread": 139894051313216, + "created": 1676441682.1696646, + "msecs": 169.6646213531494, + "relativeCreated": 79173.17986488342, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", - "asctime": "2023-02-09 15:57:54,586" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", + "asctime": "2023-02-15 07:14:42,169" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -82019,21 +89665,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954674.587231, - "msecs": 587.230920791626, - "relativeCreated": 60483.47330093384, - "thread": 139894051313216, + "created": 1676441682.169797, + "msecs": 169.79694366455078, + "relativeCreated": 79173.31218719482, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:54,587" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:42,169" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", "b'30'" ], "levelname": "DEBUG", @@ -82046,22 +89692,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954674.5877883, - "msecs": 587.7883434295654, - "relativeCreated": 60484.03072357178, - "thread": 139894051313216, + "created": 1676441682.1700704, + "msecs": 170.07040977478027, + "relativeCreated": 79173.58565330505, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'30'", - "asctime": "2023-02-09 15:57:54,587" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'30'", + "asctime": "2023-02-15 07:14:42,170" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -82073,99 +89719,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954674.5884273, - "msecs": 588.4273052215576, - "relativeCreated": 60484.66968536377, - "thread": 139894051313216, + "created": 1676441682.1704848, + "msecs": 170.4847812652588, + "relativeCreated": 79174.00002479553, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:54,588" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.5889354, - "msecs": 588.935375213623, - "relativeCreated": 60485.177755355835, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:54,588" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.6336129, - "msecs": 633.612871170044, - "relativeCreated": 60529.855251312256, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:54,633" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.6750288, - "msecs": 675.0288009643555, - "relativeCreated": 60571.27118110657, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:54,675" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:42,170" } ], - "time_consumption": 0.19805216789245605 + "time_consumption": 0.28933024406433105 }, { "name": "__tLogger__", @@ -82184,15 +89749,15 @@ "stack_info": null, "lineno": 230, "funcName": "greater_chk", - "created": 1675954674.8737063, - "msecs": 873.7063407897949, - "relativeCreated": 60769.94872093201, - "thread": 139894075555840, + "created": 1676441682.4605315, + "msecs": 460.53147315979004, + "relativeCreated": 79464.04671669006, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Boost timer is greater expectation (Content 900 and Type is ).", - "asctime": "2023-02-09 15:57:54,873", + "asctime": "2023-02-15 07:14:42,460", "moduleLogger": [ { "name": "__unittest__", @@ -82212,15 +89777,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954674.873459, - "msecs": 873.4591007232666, - "relativeCreated": 60769.70148086548, - "thread": 139894075555840, + "created": 1676441682.4602497, + "msecs": 460.249662399292, + "relativeCreated": 79463.76490592957, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Boost timer): 900 ()", - "asctime": "2023-02-09 15:57:54,873" + "asctime": "2023-02-15 07:14:42,460" }, { "name": "__unittest__", @@ -82241,18 +89806,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954674.8735964, - "msecs": 873.5964298248291, - "relativeCreated": 60769.83880996704, - "thread": 139894075555840, + "created": 1676441682.4604027, + "msecs": 460.4027271270752, + "relativeCreated": 79463.91797065735, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Boost timer): result > 0 ()", - "asctime": "2023-02-09 15:57:54,873" + "asctime": "2023-02-15 07:14:42,460" } ], - "time_consumption": 0.00010991096496582031 + "time_consumption": 0.00012874603271484375 }, { "name": "__tLogger__", @@ -82268,21 +89833,21 @@ "stack_info": null, "lineno": 145, "funcName": "__test_boost_mode__", - "created": 1675954675.175565, - "msecs": 175.56500434875488, - "relativeCreated": 61071.80738449097, - "thread": 139894075555840, + "created": 1676441682.7618666, + "msecs": 761.866569519043, + "relativeCreated": 79765.38181304932, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Setting postconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:55,175", + "asctime": "2023-02-15 07:14:42,761", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", + "videv/gfw/marion/heating_valve/set_default_temperature/set", "true" ], "levelname": "DEBUG", @@ -82295,48 +89860,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954674.8739817, - "msecs": 873.9817142486572, - "relativeCreated": 60770.22409439087, - "thread": 139894075555840, + "created": 1676441682.460838, + "msecs": 460.83807945251465, + "relativeCreated": 79464.35332298279, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:54,873" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload true", + "asctime": "2023-02-15 07:14:42,460" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.boost_timer", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.8751051, - "msecs": 875.1051425933838, - "relativeCreated": 60771.347522735596, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:54,875" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.boost_timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/boost_timer", + "videv/gfw/marion/heating_valve/boost_timer", "b'0'" ], "levelname": "DEBUG", @@ -82349,22 +89887,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954674.887698, - "msecs": 887.6979351043701, - "relativeCreated": 60783.94031524658, - "thread": 139894051313216, + "created": 1676441682.4720478, + "msecs": 472.0478057861328, + "relativeCreated": 79475.5630493164, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/boost_timer and payload b'0'", - "asctime": "2023-02-09 15:57:54,887" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/boost_timer and payload b'0'", + "asctime": "2023-02-15 07:14:42,472" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" ], "levelname": "DEBUG", "levelno": 10, @@ -82376,49 +89914,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954674.888292, - "msecs": 888.2920742034912, - "relativeCreated": 60784.5344543457, - "thread": 139894051313216, + "created": 1676441682.4729402, + "msecs": 472.94020652770996, + "relativeCreated": 79476.45545005798, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:54,888" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:14:42,472" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 25}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.8888197, - "msecs": 888.819694519043, - "relativeCreated": 60785.062074661255, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", - "asctime": "2023-02-09 15:57:54,888" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -82430,22 +89941,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954674.8891482, - "msecs": 889.1482353210449, - "relativeCreated": 60785.39061546326, - "thread": 139894051313216, + "created": 1676441682.473328, + "msecs": 473.3281135559082, + "relativeCreated": 79476.84335708618, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:54,889" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:42,473" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'25'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -82457,22 +89968,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954674.8897085, - "msecs": 889.7085189819336, - "relativeCreated": 60785.950899124146, - "thread": 139894051313216, + "created": 1676441682.4741626, + "msecs": 474.1625785827637, + "relativeCreated": 79477.67782211304, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:54,889" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:42,474" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -82484,99 +89995,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954674.8903663, - "msecs": 890.3663158416748, - "relativeCreated": 60786.60869598389, - "thread": 139894051313216, + "created": 1676441682.4753928, + "msecs": 475.39281845092773, + "relativeCreated": 79478.9080619812, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:54,890" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.890882, - "msecs": 890.8820152282715, - "relativeCreated": 60787.12439537048, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:54,890" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.9371538, - "msecs": 937.1538162231445, - "relativeCreated": 60833.39619636536, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:54,937" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954674.9778726, - "msecs": 977.8726100921631, - "relativeCreated": 60874.114990234375, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:54,977" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:42,475" } ], - "time_consumption": 0.1976923942565918 + "time_consumption": 0.28647375106811523 }, { "name": "__tLogger__", @@ -82595,15 +90025,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954675.1762495, - "msecs": 176.24950408935547, - "relativeCreated": 61072.49188423157, - "thread": 139894075555840, + "created": 1676441682.7626417, + "msecs": 762.6416683197021, + "relativeCreated": 79766.15691184998, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Boost timer is correct (Content 0 and Type is ).", - "asctime": "2023-02-09 15:57:55,176", + "asctime": "2023-02-15 07:14:42,762", "moduleLogger": [ { "name": "__unittest__", @@ -82623,15 +90053,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954675.175967, - "msecs": 175.96697807312012, - "relativeCreated": 61072.20935821533, - "thread": 139894075555840, + "created": 1676441682.762309, + "msecs": 762.3090744018555, + "relativeCreated": 79765.82431793213, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Boost timer): 0 ()", - "asctime": "2023-02-09 15:57:55,175" + "asctime": "2023-02-15 07:14:42,762" }, { "name": "__unittest__", @@ -82652,27 +90082,27 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954675.176141, - "msecs": 176.14102363586426, - "relativeCreated": 61072.383403778076, - "thread": 139894075555840, + "created": 1676441682.7625103, + "msecs": 762.5102996826172, + "relativeCreated": 79766.02554321289, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Boost timer): result = 0 ()", - "asctime": "2023-02-09 15:57:55,176" + "asctime": "2023-02-15 07:14:42,762" } ], - "time_consumption": 0.00010848045349121094 + "time_consumption": 0.00013136863708496094 } ], - "time_consumption": 0.9071817398071289, - "time_start": "2023-02-09 15:57:54,269", - "time_finished": "2023-02-09 15:57:55,176" + "time_consumption": 0.9064648151397705, + "time_start": "2023-02-15 07:14:41,856", + "time_finished": "2023-02-15 07:14:42,762" }, - "Default temperature test for device and virtual device: zigbee/gfw/dirk/heating_valve": { + "Default temperature test for device and virtual device: zigbee/gfw/marion/heating_valve": { "name": "__tLogger__", - "msg": "Default temperature test for device and virtual device: zigbee/gfw/dirk/heating_valve", + "msg": "Default temperature test for device and virtual device: zigbee/gfw/marion/heating_valve", "args": null, "levelname": "INFO", "levelno": 20, @@ -82684,22 +90114,22 @@ "stack_info": null, "lineno": 50, "funcName": "test_default_temperature", - "created": 1675954675.1767168, - "msecs": 176.71680450439453, - "relativeCreated": 61072.95918464661, - "thread": 139894075555840, + "created": 1676441682.7631323, + "msecs": 763.1323337554932, + "relativeCreated": 79766.64757728577, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Default temperature test for device and virtual device: zigbee/gfw/dirk/heating_valve", - "asctime": "2023-02-09 15:57:55,176", + "process": 509276, + "message": "Default temperature test for device and virtual device: zigbee/gfw/marion/heating_valve", + "asctime": "2023-02-15 07:14:42,763", "moduleLogger": [], "testcaseLogger": [ { "name": "__tLogger__", "msg": "Setting preconditions (Valve setpoint to %.1f)", "args": [ - 20 + 18 ], "levelname": "DEBUG", "levelno": 10, @@ -82711,22 +90141,22 @@ "stack_info": null, "lineno": 60, "funcName": "__test_default_temperature__", - "created": 1675954675.4780712, - "msecs": 478.0712127685547, - "relativeCreated": 61374.31359291077, - "thread": 139894075555840, + "created": 1676441683.064703, + "msecs": 64.70298767089844, + "relativeCreated": 80068.21823120117, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Valve setpoint to 20.0)", - "asctime": "2023-02-09 15:57:55,478", + "process": 509276, + "message": "Setting preconditions (Valve setpoint to 18.0)", + "asctime": "2023-02-15 07:14:43,064", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -82738,22 +90168,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954675.177131, - "msecs": 177.13093757629395, - "relativeCreated": 61073.373317718506, - "thread": 139894075555840, + "created": 1676441682.76354, + "msecs": 763.5400295257568, + "relativeCreated": 79767.05527305603, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:55,177" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:42,763" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -82765,22 +90195,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954675.1782753, - "msecs": 178.27534675598145, - "relativeCreated": 61074.51772689819, - "thread": 139894051313216, + "created": 1676441682.7647827, + "msecs": 764.7826671600342, + "relativeCreated": 79768.29791069031, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:55,178" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:42,764" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 20}'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 18}'" ], "levelname": "DEBUG", "levelno": 10, @@ -82792,22 +90222,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954675.1945736, - "msecs": 194.57364082336426, - "relativeCreated": 61090.816020965576, - "thread": 139894051313216, + "created": 1676441682.7694921, + "msecs": 769.4921493530273, + "relativeCreated": 79773.0073928833, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", - "asctime": "2023-02-09 15:57:55,194" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", + "asctime": "2023-02-15 07:14:42,769" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'20'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'18'" ], "levelname": "DEBUG", "levelno": 10, @@ -82819,22 +90249,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954675.1950057, - "msecs": 195.0056552886963, - "relativeCreated": 61091.24803543091, - "thread": 139894051313216, + "created": 1676441682.7697341, + "msecs": 769.7341442108154, + "relativeCreated": 79773.24938774109, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", - "asctime": "2023-02-09 15:57:55,195" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:42,769" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "videv/gfw/marion/heating_valve/user_temperature_setpoint", + "b'18'" ], "levelname": "DEBUG", "levelno": 10, @@ -82846,126 +90276,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954675.195412, - "msecs": 195.41192054748535, - "relativeCreated": 61091.6543006897, - "thread": 139894051313216, + "created": 1676441682.7699564, + "msecs": 769.9563503265381, + "relativeCreated": 79773.47159385681, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:55,195" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "b'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.195841, - "msecs": 195.84107398986816, - "relativeCreated": 61092.08345413208, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20'", - "asctime": "2023-02-09 15:57:55,195" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.1963224, - "msecs": 196.32244110107422, - "relativeCreated": 61092.564821243286, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:55,196" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.1967618, - "msecs": 196.7618465423584, - "relativeCreated": 61093.00422668457, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:55,196" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.197258, - "msecs": 197.25799560546875, - "relativeCreated": 61093.50037574768, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:55,197" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:42,769" } ], - "time_consumption": 0.28081321716308594 + "time_consumption": 0.29474663734436035 }, { "name": "__tLogger__", @@ -82984,15 +90306,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954675.4787464, - "msecs": 478.7464141845703, - "relativeCreated": 61374.98879432678, - "thread": 139894075555840, + "created": 1676441683.065483, + "msecs": 65.48309326171875, + "relativeCreated": 80068.99833679199, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Valve temperature setpoint (is not default temperature) is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:55,478", + "asctime": "2023-02-15 07:14:43,065", "moduleLogger": [ { "name": "__unittest__", @@ -83012,15 +90334,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954675.4784951, - "msecs": 478.49512100219727, - "relativeCreated": 61374.73750114441, - "thread": 139894075555840, + "created": 1676441683.0651677, + "msecs": 65.16766548156738, + "relativeCreated": 80068.68290901184, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Valve temperature setpoint (is not default temperature)): True ()", - "asctime": "2023-02-09 15:57:55,478" + "asctime": "2023-02-15 07:14:43,065" }, { "name": "__unittest__", @@ -83041,24 +90363,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954675.478637, - "msecs": 478.6369800567627, - "relativeCreated": 61374.879360198975, - "thread": 139894075555840, + "created": 1676441683.065323, + "msecs": 65.3231143951416, + "relativeCreated": 80068.83835792542, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Valve temperature setpoint (is not default temperature)): result = True ()", - "asctime": "2023-02-09 15:57:55,478" + "asctime": "2023-02-15 07:14:43,065" } ], - "time_consumption": 0.00010943412780761719 + "time_consumption": 0.00015997886657714844 }, { "name": "__tLogger__", "msg": "Triggering set to default temperature (%.1f)", "args": [ - 25 + 23 ], "levelname": "DEBUG", "levelno": 10, @@ -83070,22 +90392,22 @@ "stack_info": null, "lineno": 66, "funcName": "__test_default_temperature__", - "created": 1675954675.7810063, - "msecs": 781.0063362121582, - "relativeCreated": 61677.24871635437, - "thread": 139894075555840, + "created": 1676441683.3668513, + "msecs": 366.8513298034668, + "relativeCreated": 80370.36657333374, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Triggering set to default temperature (25.0)", - "asctime": "2023-02-09 15:57:55,781", + "process": 509276, + "message": "Triggering set to default temperature (23.0)", + "asctime": "2023-02-15 07:14:43,366", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", - "true" + "videv/gfw/marion/heating_valve/set_default_temperature/set", + "null" ], "levelname": "DEBUG", "levelno": 10, @@ -83097,22 +90419,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954675.4790633, - "msecs": 479.0632724761963, - "relativeCreated": 61375.30565261841, - "thread": 139894075555840, + "created": 1676441683.0658073, + "msecs": 65.80734252929688, + "relativeCreated": 80069.32258605957, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:55,479" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:14:43,065" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", - "b'true'" + "videv/gfw/marion/heating_valve/user_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -83124,22 +90446,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954675.4801707, - "msecs": 480.17072677612305, - "relativeCreated": 61376.413106918335, - "thread": 139894051313216, + "created": 1676441683.071983, + "msecs": 71.98309898376465, + "relativeCreated": 80075.49834251404, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:55,480" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:43,071" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "b'25'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" ], "levelname": "DEBUG", "levelno": 10, @@ -83151,76 +90473,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954675.5015972, - "msecs": 501.59716606140137, - "relativeCreated": 61397.83954620361, - "thread": 139894051313216, + "created": 1676441683.1156251, + "msecs": 115.62514305114746, + "relativeCreated": 80119.14038658142, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:55,501" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:14:43,115" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.5022752, - "msecs": 502.2752285003662, - "relativeCreated": 61398.51760864258, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:55,502" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 25}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.5027957, - "msecs": 502.7956962585449, - "relativeCreated": 61399.03807640076, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", - "asctime": "2023-02-09 15:57:55,502" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -83232,22 +90500,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954675.5031073, - "msecs": 503.10730934143066, - "relativeCreated": 61399.34968948364, - "thread": 139894051313216, + "created": 1676441683.1161673, + "msecs": 116.16730690002441, + "relativeCreated": 80119.6825504303, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:55,503" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:43,116" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'25'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -83259,22 +90527,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954675.503676, - "msecs": 503.6759376525879, - "relativeCreated": 61399.9183177948, - "thread": 139894051313216, + "created": 1676441683.1171167, + "msecs": 117.11668968200684, + "relativeCreated": 80120.63193321228, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:55,503" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:43,117" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -83286,105 +90554,24 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954675.50439, - "msecs": 504.39000129699707, - "relativeCreated": 61400.63238143921, - "thread": 139894051313216, + "created": 1676441683.1183386, + "msecs": 118.33858489990234, + "relativeCreated": 80121.85382843018, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:55,504" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.505011, - "msecs": 505.01108169555664, - "relativeCreated": 61401.25346183777, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:55,505" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.5537415, - "msecs": 553.741455078125, - "relativeCreated": 61449.98383522034, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:55,553" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.599023, - "msecs": 599.0231037139893, - "relativeCreated": 61495.2654838562, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:55,599" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:43,118" } ], - "time_consumption": 0.18198323249816895 + "time_consumption": 0.24851274490356445 }, { "name": "__tLogger__", "msg": "Valve temperature setpoint is correct (Content %s and Type is %s).", "args": [ - "25", + "23", "" ], "levelname": "INFO", @@ -83397,22 +90584,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954675.7817585, - "msecs": 781.7585468292236, - "relativeCreated": 61678.000926971436, - "thread": 139894075555840, + "created": 1676441683.3676207, + "msecs": 367.62070655822754, + "relativeCreated": 80371.1359500885, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Valve temperature setpoint is correct (Content 25 and Type is ).", - "asctime": "2023-02-09 15:57:55,781", + "process": 509276, + "message": "Valve temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:43,367", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Valve temperature setpoint", - "25", + "23", "" ], "levelname": "DEBUG", @@ -83425,15 +90612,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954675.7814562, - "msecs": 781.4562320709229, - "relativeCreated": 61677.698612213135, - "thread": 139894075555840, + "created": 1676441683.3673096, + "msecs": 367.3095703125, + "relativeCreated": 80370.82481384277, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve temperature setpoint): 25 ()", - "asctime": "2023-02-09 15:57:55,781" + "process": 509276, + "message": "Result (Valve temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:14:43,367" }, { "name": "__unittest__", @@ -83441,7 +90628,7 @@ "args": [ "Valve temperature setpoint", "=", - "25", + "23", "" ], "levelname": "DEBUG", @@ -83454,27 +90641,27 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954675.7816045, - "msecs": 781.604528427124, - "relativeCreated": 61677.846908569336, - "thread": 139894075555840, + "created": 1676441683.367463, + "msecs": 367.4631118774414, + "relativeCreated": 80370.97835540771, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve temperature setpoint): result = 25 ()", - "asctime": "2023-02-09 15:57:55,781" + "process": 509276, + "message": "Expectation (Valve temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:14:43,367" } ], - "time_consumption": 0.00015401840209960938 + "time_consumption": 0.0001575946807861328 } ], - "time_consumption": 0.6050417423248291, - "time_start": "2023-02-09 15:57:55,176", - "time_finished": "2023-02-09 15:57:55,781" + "time_consumption": 0.6044883728027344, + "time_start": "2023-02-15 07:14:42,763", + "time_finished": "2023-02-15 07:14:43,367" }, - "Summer mode test: zigbee/gfw/dirk/heating_valve": { + "Summer mode test: zigbee/gfw/marion/heating_valve": { "name": "__tLogger__", - "msg": "Summer mode test: zigbee/gfw/dirk/heating_valve", + "msg": "Summer mode test: zigbee/gfw/marion/heating_valve", "args": null, "levelname": "INFO", "levelno": 20, @@ -83486,15 +90673,15 @@ "stack_info": null, "lineno": 74, "funcName": "test_summer_mode", - "created": 1675954675.7822125, - "msecs": 782.212495803833, - "relativeCreated": 61678.454875946045, - "thread": 139894075555840, + "created": 1676441683.3681467, + "msecs": 368.1466579437256, + "relativeCreated": 80371.661901474, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Summer mode test: zigbee/gfw/dirk/heating_valve", - "asctime": "2023-02-09 15:57:55,782", + "process": 509276, + "message": "Summer mode test: zigbee/gfw/marion/heating_valve", + "asctime": "2023-02-15 07:14:43,368", "moduleLogger": [], "testcaseLogger": [ { @@ -83511,22 +90698,22 @@ "stack_info": null, "lineno": 79, "funcName": "__test_summer_mode__", - "created": 1675954676.083326, - "msecs": 83.32610130310059, - "relativeCreated": 61979.56848144531, - "thread": 139894075555840, + "created": 1676441683.66956, + "msecs": 669.5599555969238, + "relativeCreated": 80673.0751991272, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:57:56,083", + "asctime": "2023-02-15 07:14:43,669", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", - "true" + "videv/gfw/marion/heating_valve/set_default_temperature/set", + "null" ], "levelname": "DEBUG", "levelno": 10, @@ -83538,45 +90725,18 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954675.7825296, - "msecs": 782.5295925140381, - "relativeCreated": 61678.77197265625, - "thread": 139894075555840, + "created": 1676441683.3684912, + "msecs": 368.49117279052734, + "relativeCreated": 80372.0064163208, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:57:55,782" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954675.783649, - "msecs": 783.6489677429199, - "relativeCreated": 61679.89134788513, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:57:55,783" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload null", + "asctime": "2023-02-15 07:14:43,368" } ], - "time_consumption": 0.29967713356018066 + "time_consumption": 0.3010687828063965 }, { "name": "__tLogger__", @@ -83595,15 +90755,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954676.0840147, - "msecs": 84.0146541595459, - "relativeCreated": 61980.25703430176, - "thread": 139894075555840, + "created": 1676441683.6702633, + "msecs": 670.2632904052734, + "relativeCreated": 80673.77853393555, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Summer mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:56,084", + "asctime": "2023-02-15 07:14:43,670", "moduleLogger": [ { "name": "__unittest__", @@ -83623,15 +90783,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954676.0837235, - "msecs": 83.72354507446289, - "relativeCreated": 61979.965925216675, - "thread": 139894075555840, + "created": 1676441683.66999, + "msecs": 669.990062713623, + "relativeCreated": 80673.5053062439, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Summer mode): False ()", - "asctime": "2023-02-09 15:57:56,083" + "asctime": "2023-02-15 07:14:43,669" }, { "name": "__unittest__", @@ -83652,18 +90812,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954676.0838666, - "msecs": 83.86659622192383, - "relativeCreated": 61980.108976364136, - "thread": 139894075555840, + "created": 1676441683.6701415, + "msecs": 670.1414585113525, + "relativeCreated": 80673.65670204163, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Summer mode): result = False ()", - "asctime": "2023-02-09 15:57:56,083" + "asctime": "2023-02-15 07:14:43,670" } ], - "time_consumption": 0.0001480579376220703 + "time_consumption": 0.00012183189392089844 }, { "name": "__tLogger__", @@ -83679,21 +90839,21 @@ "stack_info": null, "lineno": 86, "funcName": "__test_summer_mode__", - "created": 1675954676.386282, - "msecs": 386.28196716308594, - "relativeCreated": 62282.5243473053, - "thread": 139894075555840, + "created": 1676441683.9718974, + "msecs": 971.8973636627197, + "relativeCreated": 80975.412607193, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Activating summer mode", - "asctime": "2023-02-09 15:57:56,386", + "asctime": "2023-02-15 07:14:43,971", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/summer_mode", + "videv/gfw/marion/heating_valve/summer_mode/set", "true" ], "levelname": "DEBUG", @@ -83706,48 +90866,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954676.0843563, - "msecs": 84.35630798339844, - "relativeCreated": 61980.59868812561, - "thread": 139894075555840, + "created": 1676441683.6707447, + "msecs": 670.7446575164795, + "relativeCreated": 80674.25990104675, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/summer_mode and payload true", - "asctime": "2023-02-09 15:57:56,084" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/summer_mode/set and payload true", + "asctime": "2023-02-15 07:14:43,670" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/summer_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.0853355, - "msecs": 85.33549308776855, - "relativeCreated": 61981.57787322998, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'true'", - "asctime": "2023-02-09 15:57:56,085" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", + "zigbee/gfw/marion/heating_valve/set", "b'{\"current_heating_setpoint\": 5}'" ], "levelname": "DEBUG", @@ -83760,22 +90893,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.1032124, - "msecs": 103.21235656738281, - "relativeCreated": 61999.454736709595, - "thread": 139894051313216, + "created": 1676441683.681625, + "msecs": 681.6248893737793, + "relativeCreated": 80685.14013290405, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 5}'", - "asctime": "2023-02-09 15:57:56,103" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 5}'", + "asctime": "2023-02-15 07:14:43,681" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -83787,21 +90920,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954676.1036808, - "msecs": 103.68084907531738, - "relativeCreated": 61999.92322921753, - "thread": 139894051313216, + "created": 1676441683.6821094, + "msecs": 682.1093559265137, + "relativeCreated": 80685.62459945679, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:56,103" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:43,682" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", "b'5'" ], "levelname": "DEBUG", @@ -83814,22 +90947,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.1043754, - "msecs": 104.37536239624023, - "relativeCreated": 62000.61774253845, - "thread": 139894051313216, + "created": 1676441683.6830127, + "msecs": 683.0127239227295, + "relativeCreated": 80686.527967453, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'5'", - "asctime": "2023-02-09 15:57:56,104" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'5'", + "asctime": "2023-02-15 07:14:43,683" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -83841,21 +90974,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.1051528, - "msecs": 105.15284538269043, - "relativeCreated": 62001.3952255249, - "thread": 139894051313216, + "created": 1676441683.6840413, + "msecs": 684.0412616729736, + "relativeCreated": 80687.55650520325, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:56,105" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:43,684" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/summer_mode", + "videv/gfw/marion/heating_valve/summer_mode", "b'true'" ], "levelname": "DEBUG", @@ -83868,126 +91001,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.1057363, - "msecs": 105.73625564575195, - "relativeCreated": 62001.978635787964, - "thread": 139894051313216, + "created": 1676441683.7267456, + "msecs": 726.74560546875, + "relativeCreated": 80730.26084899902, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'true'", - "asctime": "2023-02-09 15:57:56,105" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.1062984, - "msecs": 106.29844665527344, - "relativeCreated": 62002.540826797485, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:56,106" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.1068876, - "msecs": 106.8875789642334, - "relativeCreated": 62003.129959106445, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:56,106" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.1495771, - "msecs": 149.57714080810547, - "relativeCreated": 62045.81952095032, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:56,149" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.191062, - "msecs": 191.06197357177734, - "relativeCreated": 62087.30435371399, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:56,191" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'true'", + "asctime": "2023-02-15 07:14:43,726" } ], - "time_consumption": 0.1952199935913086 + "time_consumption": 0.24515175819396973 }, { "name": "__tLogger__", @@ -84006,15 +91031,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954676.3869274, - "msecs": 386.92736625671387, - "relativeCreated": 62283.169746398926, - "thread": 139894075555840, + "created": 1676441683.9725118, + "msecs": 972.5117683410645, + "relativeCreated": 80976.02701187134, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Summer mode is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:57:56,386", + "asctime": "2023-02-15 07:14:43,972", "moduleLogger": [ { "name": "__unittest__", @@ -84034,15 +91059,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954676.3866801, - "msecs": 386.68012619018555, - "relativeCreated": 62282.9225063324, - "thread": 139894075555840, + "created": 1676441683.9722762, + "msecs": 972.2762107849121, + "relativeCreated": 80975.79145431519, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Summer mode): True ()", - "asctime": "2023-02-09 15:57:56,386" + "asctime": "2023-02-15 07:14:43,972" }, { "name": "__unittest__", @@ -84063,18 +91088,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954676.3868184, - "msecs": 386.81840896606445, - "relativeCreated": 62283.06078910828, - "thread": 139894075555840, + "created": 1676441683.972407, + "msecs": 972.4071025848389, + "relativeCreated": 80975.92234611511, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Summer mode): result = True ()", - "asctime": "2023-02-09 15:57:56,386" + "asctime": "2023-02-15 07:14:43,972" } ], - "time_consumption": 0.00010895729064941406 + "time_consumption": 0.00010466575622558594 }, { "name": "__tLogger__", @@ -84093,15 +91118,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954676.3872876, - "msecs": 387.2876167297363, - "relativeCreated": 62283.52999687195, - "thread": 139894075555840, + "created": 1676441683.9728959, + "msecs": 972.8958606719971, + "relativeCreated": 80976.41110420227, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Temperature setpoint is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:57:56,387", + "asctime": "2023-02-15 07:14:43,972", "moduleLogger": [ { "name": "__unittest__", @@ -84121,15 +91146,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954676.3870971, - "msecs": 387.0971202850342, - "relativeCreated": 62283.339500427246, - "thread": 139894075555840, + "created": 1676441683.9726772, + "msecs": 972.6772308349609, + "relativeCreated": 80976.19247436523, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Temperature setpoint): 5 ()", - "asctime": "2023-02-09 15:57:56,387" + "asctime": "2023-02-15 07:14:43,972" }, { "name": "__unittest__", @@ -84150,18 +91175,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954676.387197, - "msecs": 387.19701766967773, - "relativeCreated": 62283.43939781189, - "thread": 139894075555840, + "created": 1676441683.972774, + "msecs": 972.7740287780762, + "relativeCreated": 80976.28927230835, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Temperature setpoint): result = 5 ()", - "asctime": "2023-02-09 15:57:56,387" + "asctime": "2023-02-15 07:14:43,972" } ], - "time_consumption": 9.059906005859375e-05 + "time_consumption": 0.00012183189392089844 }, { "name": "__tLogger__", @@ -84177,21 +91202,21 @@ "stack_info": null, "lineno": 92, "funcName": "__test_summer_mode__", - "created": 1675954676.688521, - "msecs": 688.5209083557129, - "relativeCreated": 62584.763288497925, - "thread": 139894075555840, + "created": 1676441684.2742722, + "msecs": 274.27220344543457, + "relativeCreated": 81277.78744697571, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Deactivating summer mode", - "asctime": "2023-02-09 15:57:56,688", + "asctime": "2023-02-15 07:14:44,274", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/summer_mode", + "videv/gfw/marion/heating_valve/summer_mode/set", "false" ], "levelname": "DEBUG", @@ -84204,22 +91229,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954676.3875723, - "msecs": 387.5722885131836, - "relativeCreated": 62283.814668655396, - "thread": 139894075555840, + "created": 1676441683.9731534, + "msecs": 973.1533527374268, + "relativeCreated": 80976.6685962677, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/summer_mode and payload false", - "asctime": "2023-02-09 15:57:56,387" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/summer_mode/set and payload false", + "asctime": "2023-02-15 07:14:43,973" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/summer_mode", - "b'false'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" ], "levelname": "DEBUG", "levelno": 10, @@ -84231,49 +91256,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.3886905, - "msecs": 388.6904716491699, - "relativeCreated": 62284.93285179138, - "thread": 139894051313216, + "created": 1676441683.9839816, + "msecs": 983.9816093444824, + "relativeCreated": 80987.49685287476, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'false'", - "asctime": "2023-02-09 15:57:56,388" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:14:43,983" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 25}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.3998342, - "msecs": 399.83415603637695, - "relativeCreated": 62296.07653617859, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", - "asctime": "2023-02-09 15:57:56,399" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -84285,22 +91283,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954676.4003232, - "msecs": 400.32315254211426, - "relativeCreated": 62296.565532684326, - "thread": 139894051313216, + "created": 1676441683.9846253, + "msecs": 984.6253395080566, + "relativeCreated": 80988.14058303833, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:56,400" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:43,984" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'25'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -84312,48 +91310,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.4009862, - "msecs": 400.9861946105957, - "relativeCreated": 62297.22857475281, - "thread": 139894051313216, + "created": 1676441683.9854453, + "msecs": 985.4452610015869, + "relativeCreated": 80988.96050453186, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:56,400" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:43,985" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.401766, - "msecs": 401.7660617828369, - "relativeCreated": 62298.00844192505, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:56,401" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/summer_mode", + "videv/gfw/marion/heating_valve/summer_mode", "b'false'" ], "levelname": "DEBUG", @@ -84366,22 +91337,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.4023583, - "msecs": 402.3582935333252, - "relativeCreated": 62298.60067367554, - "thread": 139894051313216, + "created": 1676441683.986299, + "msecs": 986.2990379333496, + "relativeCreated": 80989.81428146362, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'false'", - "asctime": "2023-02-09 15:57:56,402" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'false'", + "asctime": "2023-02-15 07:14:43,986" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -84393,99 +91364,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.4029276, - "msecs": 402.9276371002197, - "relativeCreated": 62299.17001724243, - "thread": 139894051313216, + "created": 1676441683.987383, + "msecs": 987.3828887939453, + "relativeCreated": 80990.89813232422, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:56,402" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.4039824, - "msecs": 403.98240089416504, - "relativeCreated": 62300.22478103638, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:56,403" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.4502113, - "msecs": 450.2112865447998, - "relativeCreated": 62346.45366668701, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:56,450" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.4940705, - "msecs": 494.07052993774414, - "relativeCreated": 62390.312910079956, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:56,494" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:43,987" } ], - "time_consumption": 0.19445037841796875 + "time_consumption": 0.28688931465148926 }, { "name": "__tLogger__", @@ -84504,15 +91394,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954676.6892488, - "msecs": 689.24880027771, - "relativeCreated": 62585.49118041992, - "thread": 139894075555840, + "created": 1676441684.275069, + "msecs": 275.068998336792, + "relativeCreated": 81278.58424186707, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Summer mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:57:56,689", + "asctime": "2023-02-15 07:14:44,275", "moduleLogger": [ { "name": "__unittest__", @@ -84532,15 +91422,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954676.6889157, - "msecs": 688.9157295227051, - "relativeCreated": 62585.15810966492, - "thread": 139894075555840, + "created": 1676441684.2747495, + "msecs": 274.7495174407959, + "relativeCreated": 81278.26476097107, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Summer mode): False ()", - "asctime": "2023-02-09 15:57:56,688" + "asctime": "2023-02-15 07:14:44,274" }, { "name": "__unittest__", @@ -84561,24 +91451,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954676.6890895, - "msecs": 689.0895366668701, - "relativeCreated": 62585.33191680908, - "thread": 139894075555840, + "created": 1676441684.27491, + "msecs": 274.90997314453125, + "relativeCreated": 81278.4252166748, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Summer mode): result = False ()", - "asctime": "2023-02-09 15:57:56,689" + "asctime": "2023-02-15 07:14:44,274" } ], - "time_consumption": 0.00015926361083984375 + "time_consumption": 0.0001590251922607422 }, { "name": "__tLogger__", "msg": "Temperature setpoint is correct (Content %s and Type is %s).", "args": [ - "25", + "23", "" ], "levelname": "INFO", @@ -84591,22 +91481,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954676.689621, - "msecs": 689.6209716796875, - "relativeCreated": 62585.8633518219, - "thread": 139894075555840, + "created": 1676441684.275514, + "msecs": 275.5138874053955, + "relativeCreated": 81279.02913093567, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 25 and Type is ).", - "asctime": "2023-02-09 15:57:56,689", + "process": 509276, + "message": "Temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:44,275", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Temperature setpoint", - "25", + "23", "" ], "levelname": "DEBUG", @@ -84619,15 +91509,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954676.689432, - "msecs": 689.43190574646, - "relativeCreated": 62585.67428588867, - "thread": 139894075555840, + "created": 1676441684.27527, + "msecs": 275.2699851989746, + "relativeCreated": 81278.78522872925, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 25 ()", - "asctime": "2023-02-09 15:57:56,689" + "process": 509276, + "message": "Result (Temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:14:44,275" }, { "name": "__unittest__", @@ -84635,7 +91525,7 @@ "args": [ "Temperature setpoint", "=", - "25", + "23", "" ], "levelname": "DEBUG", @@ -84648,27 +91538,27 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954676.6895313, - "msecs": 689.5313262939453, - "relativeCreated": 62585.77370643616, - "thread": 139894075555840, + "created": 1676441684.2754107, + "msecs": 275.41065216064453, + "relativeCreated": 81278.92589569092, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 25 ()", - "asctime": "2023-02-09 15:57:56,689" + "process": 509276, + "message": "Expectation (Temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:14:44,275" } ], - "time_consumption": 8.96453857421875e-05 + "time_consumption": 0.00010323524475097656 } ], - "time_consumption": 0.9074084758758545, - "time_start": "2023-02-09 15:57:55,782", - "time_finished": "2023-02-09 15:57:56,689" + "time_consumption": 0.9073672294616699, + "time_start": "2023-02-15 07:14:43,368", + "time_finished": "2023-02-15 07:14:44,275" }, - "User temperature setpoint test for device and virtual device: zigbee/gfw/dirk/heating_valve": { + "User temperature setpoint test for device and virtual device: zigbee/gfw/marion/heating_valve": { "name": "__tLogger__", - "msg": "User temperature setpoint test for device and virtual device: zigbee/gfw/dirk/heating_valve", + "msg": "User temperature setpoint test for device and virtual device: zigbee/gfw/marion/heating_valve", "args": null, "levelname": "INFO", "levelno": 20, @@ -84680,22 +91570,22 @@ "stack_info": null, "lineno": 22, "funcName": "test_user_temperature_setpoint", - "created": 1675954676.6900752, - "msecs": 690.075159072876, - "relativeCreated": 62586.31753921509, - "thread": 139894075555840, + "created": 1676441684.27598, + "msecs": 275.97999572753906, + "relativeCreated": 81279.49523925781, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "User temperature setpoint test for device and virtual device: zigbee/gfw/dirk/heating_valve", - "asctime": "2023-02-09 15:57:56,690", + "process": 509276, + "message": "User temperature setpoint test for device and virtual device: zigbee/gfw/marion/heating_valve", + "asctime": "2023-02-15 07:14:44,275", "moduleLogger": [], "testcaseLogger": [ { "name": "__tLogger__", "msg": "Changing valve temperature setpoint to '%.1f'", "args": [ - 20 + 18 ], "levelname": "DEBUG", "levelno": 10, @@ -84707,22 +91597,22 @@ "stack_info": null, "lineno": 33, "funcName": "__test_user_temperature_setpoint__", - "created": 1675954676.9913304, - "msecs": 991.3303852081299, - "relativeCreated": 62887.57276535034, - "thread": 139894075555840, + "created": 1676441684.57755, + "msecs": 577.549934387207, + "relativeCreated": 81581.06517791748, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing valve temperature setpoint to '20.0'", - "asctime": "2023-02-09 15:57:56,991", + "process": 509276, + "message": "Changing valve temperature setpoint to '18.0'", + "asctime": "2023-02-15 07:14:44,577", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -84734,22 +91624,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954676.6904466, - "msecs": 690.4466152191162, - "relativeCreated": 62586.68899536133, - "thread": 139894075555840, + "created": 1676441684.2763882, + "msecs": 276.38816833496094, + "relativeCreated": 81279.90341186523, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:56,690" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:44,276" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -84761,22 +91651,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.6915805, - "msecs": 691.5805339813232, - "relativeCreated": 62587.822914123535, - "thread": 139894051313216, + "created": 1676441684.2776258, + "msecs": 277.62579917907715, + "relativeCreated": 81281.14104270935, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:56,691" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:44,277" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 20}'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 18}'" ], "levelname": "DEBUG", "levelno": 10, @@ -84788,22 +91678,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.7125041, - "msecs": 712.5041484832764, - "relativeCreated": 62608.74652862549, - "thread": 139894051313216, + "created": 1676441684.282492, + "msecs": 282.49192237854004, + "relativeCreated": 81286.00716590881, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", - "asctime": "2023-02-09 15:57:56,712" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", + "asctime": "2023-02-15 07:14:44,282" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'20'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'18'" ], "levelname": "DEBUG", "levelno": 10, @@ -84815,22 +91705,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.7132406, - "msecs": 713.2406234741211, - "relativeCreated": 62609.48300361633, - "thread": 139894051313216, + "created": 1676441684.282724, + "msecs": 282.72390365600586, + "relativeCreated": 81286.23914718628, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", - "asctime": "2023-02-09 15:57:56,713" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:44,282" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "videv/gfw/marion/heating_valve/user_temperature_setpoint", + "b'18'" ], "levelname": "DEBUG", "levelno": 10, @@ -84842,132 +91732,24 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.7139032, - "msecs": 713.9031887054443, - "relativeCreated": 62610.145568847656, - "thread": 139894051313216, + "created": 1676441684.2829387, + "msecs": 282.93871879577637, + "relativeCreated": 81286.45396232605, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:56,713" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "b'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.7144682, - "msecs": 714.468240737915, - "relativeCreated": 62610.71062088013, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20'", - "asctime": "2023-02-09 15:57:56,714" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.7150457, - "msecs": 715.045690536499, - "relativeCreated": 62611.28807067871, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:56,715" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.7155788, - "msecs": 715.5787944793701, - "relativeCreated": 62611.82117462158, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:56,715" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954676.7161744, - "msecs": 716.1743640899658, - "relativeCreated": 62612.41674423218, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:56,716" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:44,282" } ], - "time_consumption": 0.27515602111816406 + "time_consumption": 0.29461121559143066 }, { "name": "__tLogger__", "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", "args": [ - "20", + "18", "" ], "levelname": "INFO", @@ -84980,22 +91762,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954676.9920976, - "msecs": 992.0976161956787, - "relativeCreated": 62888.33999633789, - "thread": 139894075555840, + "created": 1676441684.5782928, + "msecs": 578.2928466796875, + "relativeCreated": 81581.80809020996, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 20 and Type is ).", - "asctime": "2023-02-09 15:57:56,992", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:14:44,578", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Virtual device valve temperature", - "20", + "18", "" ], "levelname": "DEBUG", @@ -85008,15 +91790,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954676.9918108, - "msecs": 991.8107986450195, - "relativeCreated": 62888.05317878723, - "thread": 139894075555840, + "created": 1676441684.578015, + "msecs": 578.0150890350342, + "relativeCreated": 81581.53033256531, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 20 ()", - "asctime": "2023-02-09 15:57:56,991" + "process": 509276, + "message": "Result (Virtual device valve temperature): 18 ()", + "asctime": "2023-02-15 07:14:44,578" }, { "name": "__unittest__", @@ -85024,7 +91806,7 @@ "args": [ "Virtual device valve temperature", "=", - "20", + "18", "" ], "levelname": "DEBUG", @@ -85037,24 +91819,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954676.9919703, - "msecs": 991.9703006744385, - "relativeCreated": 62888.21268081665, - "thread": 139894075555840, + "created": 1676441684.5781696, + "msecs": 578.169584274292, + "relativeCreated": 81581.68482780457, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 20 ()", - "asctime": "2023-02-09 15:57:56,991" + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 18 ()", + "asctime": "2023-02-15 07:14:44,578" } ], - "time_consumption": 0.00012731552124023438 + "time_consumption": 0.0001232624053955078 }, { "name": "__tLogger__", "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", "args": [ - "20", + "18", "" ], "levelname": "INFO", @@ -85067,22 +91849,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954676.9925127, - "msecs": 992.5127029418945, - "relativeCreated": 62888.75508308411, - "thread": 139894075555840, + "created": 1676441684.5787847, + "msecs": 578.784704208374, + "relativeCreated": 81582.29994773865, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device user temperature is correct (Content 20 and Type is ).", - "asctime": "2023-02-09 15:57:56,992", + "process": 509276, + "message": "Virtual device user temperature is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:14:44,578", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Virtual device user temperature", - "20", + "18", "" ], "levelname": "DEBUG", @@ -85095,15 +91877,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954676.992294, - "msecs": 992.2940731048584, - "relativeCreated": 62888.53645324707, - "thread": 139894075555840, + "created": 1676441684.5785549, + "msecs": 578.5548686981201, + "relativeCreated": 81582.0701122284, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device user temperature): 20 ()", - "asctime": "2023-02-09 15:57:56,992" + "process": 509276, + "message": "Result (Virtual device user temperature): 18 ()", + "asctime": "2023-02-15 07:14:44,578" }, { "name": "__unittest__", @@ -85111,7 +91893,7 @@ "args": [ "Virtual device user temperature", "=", - "20", + "18", "" ], "levelname": "DEBUG", @@ -85124,24 +91906,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954676.9924092, - "msecs": 992.4092292785645, - "relativeCreated": 62888.65160942078, - "thread": 139894075555840, + "created": 1676441684.5786796, + "msecs": 578.6795616149902, + "relativeCreated": 81582.19480514526, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device user temperature): result = 20 ()", - "asctime": "2023-02-09 15:57:56,992" + "process": 509276, + "message": "Expectation (Virtual device user temperature): result = 18 ()", + "asctime": "2023-02-15 07:14:44,578" } ], - "time_consumption": 0.00010347366333007812 + "time_consumption": 0.00010514259338378906 }, { "name": "__tLogger__", "msg": "Changing videv user temperature setpoint to '%.1f'", "args": [ - 25 + 23 ], "levelname": "DEBUG", "levelno": 10, @@ -85153,22 +91935,22 @@ "stack_info": null, "lineno": 41, "funcName": "__test_user_temperature_setpoint__", - "created": 1675954677.293869, - "msecs": 293.8690185546875, - "relativeCreated": 63190.1113986969, - "thread": 139894075555840, + "created": 1676441684.880312, + "msecs": 880.3119659423828, + "relativeCreated": 81883.82720947266, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing videv user temperature setpoint to '25.0'", - "asctime": "2023-02-09 15:57:57,293", + "process": 509276, + "message": "Changing videv user temperature setpoint to '23.0'", + "asctime": "2023-02-15 07:14:44,880", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "25" + "videv/gfw/marion/heating_valve/user_temperature_setpoint/set", + "23" ], "levelname": "DEBUG", "levelno": 10, @@ -85180,22 +91962,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954676.9928565, - "msecs": 992.856502532959, - "relativeCreated": 62889.09888267517, - "thread": 139894075555840, + "created": 1676441684.5791507, + "msecs": 579.1506767272949, + "relativeCreated": 81582.66592025757, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload 25", - "asctime": "2023-02-09 15:57:56,992" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint/set and payload 23", + "asctime": "2023-02-15 07:14:44,579" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "b'25'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" ], "levelname": "DEBUG", "levelno": 10, @@ -85207,49 +91989,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954676.9942307, - "msecs": 994.2307472229004, - "relativeCreated": 62890.47312736511, - "thread": 139894051313216, + "created": 1676441684.5854213, + "msecs": 585.4213237762451, + "relativeCreated": 81588.93656730652, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:56,994" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:14:44,585" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 25}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.0133626, - "msecs": 13.362646102905273, - "relativeCreated": 62909.60502624512, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", - "asctime": "2023-02-09 15:57:57,013" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -85261,22 +92016,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954677.0138292, - "msecs": 13.829231262207031, - "relativeCreated": 62910.07161140442, - "thread": 139894051313216, + "created": 1676441684.5857685, + "msecs": 585.768461227417, + "relativeCreated": 81589.28370475769, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:57,013" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:44,585" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'25'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -85288,22 +92043,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.0145054, - "msecs": 14.505386352539062, - "relativeCreated": 62910.74776649475, - "thread": 139894051313216, + "created": 1676441684.5860143, + "msecs": 586.0142707824707, + "relativeCreated": 81589.52951431274, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:57,014" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:44,586" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "videv/gfw/marion/heating_valve/user_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -85315,22 +92070,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.0152683, - "msecs": 15.268325805664062, - "relativeCreated": 62911.510705947876, - "thread": 139894051313216, + "created": 1676441684.5862765, + "msecs": 586.2765312194824, + "relativeCreated": 81589.79177474976, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:57,015" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:44,586" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "b'25'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -85342,132 +92097,24 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.0158496, - "msecs": 15.849590301513672, - "relativeCreated": 62912.091970443726, - "thread": 139894051313216, + "created": 1676441684.586511, + "msecs": 586.5108966827393, + "relativeCreated": 81590.02614021301, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:57,015" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.0164204, - "msecs": 16.420364379882812, - "relativeCreated": 62912.662744522095, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:57,016" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.0169969, - "msecs": 16.99686050415039, - "relativeCreated": 62913.23924064636, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:57,016" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.0657787, - "msecs": 65.77873229980469, - "relativeCreated": 62962.02111244202, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:57,065" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.1110315, - "msecs": 111.03153228759766, - "relativeCreated": 63007.27391242981, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:57,111" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:44,586" } ], - "time_consumption": 0.18283748626708984 + "time_consumption": 0.29380106925964355 }, { "name": "__tLogger__", "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", "args": [ - "25", + "23", "" ], "levelname": "INFO", @@ -85480,22 +92127,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954677.2945354, - "msecs": 294.53539848327637, - "relativeCreated": 63190.77777862549, - "thread": 139894075555840, + "created": 1676441684.8810887, + "msecs": 881.0887336730957, + "relativeCreated": 81884.60397720337, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Valve device temperature setpoint is correct (Content 25 and Type is ).", - "asctime": "2023-02-09 15:57:57,294", + "process": 509276, + "message": "Valve device temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:44,881", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Valve device temperature setpoint", - "25", + "23", "" ], "levelname": "DEBUG", @@ -85508,15 +92155,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954677.2942896, - "msecs": 294.28958892822266, - "relativeCreated": 63190.531969070435, - "thread": 139894075555840, + "created": 1676441684.8807743, + "msecs": 880.7742595672607, + "relativeCreated": 81884.28950309753, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve device temperature setpoint): 25 ()", - "asctime": "2023-02-09 15:57:57,294" + "process": 509276, + "message": "Result (Valve device temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:14:44,880" }, { "name": "__unittest__", @@ -85524,7 +92171,7 @@ "args": [ "Valve device temperature setpoint", "=", - "25", + "23", "" ], "levelname": "DEBUG", @@ -85537,24 +92184,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954677.2944295, - "msecs": 294.4295406341553, - "relativeCreated": 63190.67192077637, - "thread": 139894075555840, + "created": 1676441684.880928, + "msecs": 880.9280395507812, + "relativeCreated": 81884.44328308105, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve device temperature setpoint): result = 25 ()", - "asctime": "2023-02-09 15:57:57,294" + "process": 509276, + "message": "Expectation (Valve device temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:14:44,880" } ], - "time_consumption": 0.00010585784912109375 + "time_consumption": 0.00016069412231445312 }, { "name": "__tLogger__", "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", "args": [ - "25", + "23", "" ], "levelname": "INFO", @@ -85567,22 +92214,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954677.2948914, - "msecs": 294.891357421875, - "relativeCreated": 63191.13373756409, - "thread": 139894075555840, + "created": 1676441684.8815215, + "msecs": 881.521463394165, + "relativeCreated": 81885.03670692444, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 25 and Type is ).", - "asctime": "2023-02-09 15:57:57,294", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:44,881", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Virtual device valve temperature", - "25", + "23", "" ], "levelname": "DEBUG", @@ -85595,15 +92242,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954677.2947054, - "msecs": 294.7053909301758, - "relativeCreated": 63190.94777107239, - "thread": 139894075555840, + "created": 1676441684.8812926, + "msecs": 881.2925815582275, + "relativeCreated": 81884.8078250885, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 25 ()", - "asctime": "2023-02-09 15:57:57,294" + "process": 509276, + "message": "Result (Virtual device valve temperature): 23 ()", + "asctime": "2023-02-15 07:14:44,881" }, { "name": "__unittest__", @@ -85611,7 +92258,7 @@ "args": [ "Virtual device valve temperature", "=", - "25", + "23", "" ], "levelname": "DEBUG", @@ -85624,24 +92271,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954677.2948034, - "msecs": 294.8033809661865, - "relativeCreated": 63191.0457611084, - "thread": 139894075555840, + "created": 1676441684.8814182, + "msecs": 881.4182281494141, + "relativeCreated": 81884.93347167969, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 25 ()", - "asctime": "2023-02-09 15:57:57,294" + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 23 ()", + "asctime": "2023-02-15 07:14:44,881" } ], - "time_consumption": 8.797645568847656e-05 + "time_consumption": 0.00010323524475097656 }, { "name": "__tLogger__", "msg": "Changing valve temperature setpoint to '%.1f'", "args": [ - 20 + 18 ], "levelname": "DEBUG", "levelno": 10, @@ -85653,22 +92300,22 @@ "stack_info": null, "lineno": 33, "funcName": "__test_user_temperature_setpoint__", - "created": 1675954677.5961752, - "msecs": 596.1751937866211, - "relativeCreated": 63492.41757392883, - "thread": 139894075555840, + "created": 1676441685.1830058, + "msecs": 183.00580978393555, + "relativeCreated": 82186.52105331421, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing valve temperature setpoint to '20.0'", - "asctime": "2023-02-09 15:57:57,596", + "process": 509276, + "message": "Changing valve temperature setpoint to '18.0'", + "asctime": "2023-02-15 07:14:45,183", "moduleLogger": [ { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -85680,22 +92327,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954677.295191, - "msecs": 295.19104957580566, - "relativeCreated": 63191.43342971802, - "thread": 139894075555840, + "created": 1676441684.881869, + "msecs": 881.8690776824951, + "relativeCreated": 81885.38432121277, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:57,295" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:44,881" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -85707,22 +92354,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.2962916, - "msecs": 296.2915897369385, - "relativeCreated": 63192.53396987915, - "thread": 139894051313216, + "created": 1676441684.8831804, + "msecs": 883.1803798675537, + "relativeCreated": 81886.69562339783, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 20, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:57,296" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:44,883" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 20}'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 18}'" ], "levelname": "DEBUG", "levelno": 10, @@ -85734,22 +92381,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.3180945, - "msecs": 318.09449195861816, - "relativeCreated": 63214.33687210083, - "thread": 139894051313216, + "created": 1676441684.887886, + "msecs": 887.8860473632812, + "relativeCreated": 81891.40129089355, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 20}'", - "asctime": "2023-02-09 15:57:57,318" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", + "asctime": "2023-02-15 07:14:44,887" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'20'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'18'" ], "levelname": "DEBUG", "levelno": 10, @@ -85761,22 +92408,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.3187912, - "msecs": 318.79115104675293, - "relativeCreated": 63215.033531188965, - "thread": 139894051313216, + "created": 1676441684.888692, + "msecs": 888.6919021606445, + "relativeCreated": 81892.20714569092, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'20'", - "asctime": "2023-02-09 15:57:57,318" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:44,888" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "videv/gfw/marion/heating_valve/user_temperature_setpoint", + "b'18'" ], "levelname": "DEBUG", "levelno": 10, @@ -85788,132 +92435,24 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.3194206, - "msecs": 319.42057609558105, - "relativeCreated": 63215.66295623779, - "thread": 139894051313216, + "created": 1676441684.8894892, + "msecs": 889.4891738891602, + "relativeCreated": 81893.00441741943, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:57,319" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "b'20'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.3200138, - "msecs": 320.01376152038574, - "relativeCreated": 63216.2561416626, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20'", - "asctime": "2023-02-09 15:57:57,320" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.3206012, - "msecs": 320.601224899292, - "relativeCreated": 63216.843605041504, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:57,320" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.3211682, - "msecs": 321.1681842803955, - "relativeCreated": 63217.41056442261, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:57,321" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.3217645, - "msecs": 321.7644691467285, - "relativeCreated": 63218.00684928894, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:57,321" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'18'", + "asctime": "2023-02-15 07:14:44,889" } ], - "time_consumption": 0.2744107246398926 + "time_consumption": 0.2935166358947754 }, { "name": "__tLogger__", "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", "args": [ - "20", + "18", "" ], "levelname": "INFO", @@ -85926,22 +92465,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954677.5968325, - "msecs": 596.8325138092041, - "relativeCreated": 63493.074893951416, - "thread": 139894075555840, + "created": 1676441685.1837568, + "msecs": 183.75682830810547, + "relativeCreated": 82187.27207183838, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 20 and Type is ).", - "asctime": "2023-02-09 15:57:57,596", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:14:45,183", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Virtual device valve temperature", - "20", + "18", "" ], "levelname": "DEBUG", @@ -85954,15 +92493,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954677.5965917, - "msecs": 596.5917110443115, - "relativeCreated": 63492.83409118652, - "thread": 139894075555840, + "created": 1676441685.1834855, + "msecs": 183.4855079650879, + "relativeCreated": 82187.00075149536, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 20 ()", - "asctime": "2023-02-09 15:57:57,596" + "process": 509276, + "message": "Result (Virtual device valve temperature): 18 ()", + "asctime": "2023-02-15 07:14:45,183" }, { "name": "__unittest__", @@ -85970,7 +92509,7 @@ "args": [ "Virtual device valve temperature", "=", - "20", + "18", "" ], "levelname": "DEBUG", @@ -85983,24 +92522,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954677.596727, - "msecs": 596.7268943786621, - "relativeCreated": 63492.969274520874, - "thread": 139894075555840, + "created": 1676441685.1836357, + "msecs": 183.63571166992188, + "relativeCreated": 82187.1509552002, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 20 ()", - "asctime": "2023-02-09 15:57:57,596" + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 18 ()", + "asctime": "2023-02-15 07:14:45,183" } ], - "time_consumption": 0.00010561943054199219 + "time_consumption": 0.00012111663818359375 }, { "name": "__tLogger__", "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", "args": [ - "20", + "18", "" ], "levelname": "INFO", @@ -86013,22 +92552,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954677.597267, - "msecs": 597.2669124603271, - "relativeCreated": 63493.50929260254, - "thread": 139894075555840, + "created": 1676441685.1841583, + "msecs": 184.1583251953125, + "relativeCreated": 82187.67356872559, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device user temperature is correct (Content 20 and Type is ).", - "asctime": "2023-02-09 15:57:57,597", + "process": 509276, + "message": "Virtual device user temperature is correct (Content 18 and Type is ).", + "asctime": "2023-02-15 07:14:45,184", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Virtual device user temperature", - "20", + "18", "" ], "levelname": "DEBUG", @@ -86041,15 +92580,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954677.5970368, - "msecs": 597.0368385314941, - "relativeCreated": 63493.279218673706, - "thread": 139894075555840, + "created": 1676441685.1839488, + "msecs": 183.94875526428223, + "relativeCreated": 82187.46399879456, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device user temperature): 20 ()", - "asctime": "2023-02-09 15:57:57,597" + "process": 509276, + "message": "Result (Virtual device user temperature): 18 ()", + "asctime": "2023-02-15 07:14:45,183" }, { "name": "__unittest__", @@ -86057,7 +92596,7 @@ "args": [ "Virtual device user temperature", "=", - "20", + "18", "" ], "levelname": "DEBUG", @@ -86070,24 +92609,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954677.5971787, - "msecs": 597.1786975860596, - "relativeCreated": 63493.42107772827, - "thread": 139894075555840, + "created": 1676441685.18406, + "msecs": 184.06009674072266, + "relativeCreated": 82187.575340271, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device user temperature): result = 20 ()", - "asctime": "2023-02-09 15:57:57,597" + "process": 509276, + "message": "Expectation (Virtual device user temperature): result = 18 ()", + "asctime": "2023-02-15 07:14:45,184" } ], - "time_consumption": 8.821487426757812e-05 + "time_consumption": 9.822845458984375e-05 }, { "name": "__tLogger__", "msg": "Changing videv user temperature setpoint to '%.1f'", "args": [ - 25 + 23 ], "levelname": "DEBUG", "levelno": 10, @@ -86099,22 +92638,22 @@ "stack_info": null, "lineno": 41, "funcName": "__test_user_temperature_setpoint__", - "created": 1675954677.8985188, - "msecs": 898.5188007354736, - "relativeCreated": 63794.761180877686, - "thread": 139894075555840, + "created": 1676441685.4856465, + "msecs": 485.64648628234863, + "relativeCreated": 82489.16172981262, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Changing videv user temperature setpoint to '25.0'", - "asctime": "2023-02-09 15:57:57,898", + "process": 509276, + "message": "Changing videv user temperature setpoint to '23.0'", + "asctime": "2023-02-15 07:14:45,485", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "25" + "videv/gfw/marion/heating_valve/user_temperature_setpoint/set", + "23" ], "levelname": "DEBUG", "levelno": 10, @@ -86126,22 +92665,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954677.5975685, - "msecs": 597.5685119628906, - "relativeCreated": 63493.8108921051, - "thread": 139894075555840, + "created": 1676441685.184476, + "msecs": 184.47589874267578, + "relativeCreated": 82187.99114227295, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload 25", - "asctime": "2023-02-09 15:57:57,597" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint/set and payload 23", + "asctime": "2023-02-15 07:14:45,184" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "b'25'" + "zigbee/gfw/marion/heating_valve/set", + "b'{\"current_heating_setpoint\": 23}'" ], "levelname": "DEBUG", "levelno": 10, @@ -86153,49 +92692,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.5986834, - "msecs": 598.6833572387695, - "relativeCreated": 63494.92573738098, - "thread": 139894051313216, + "created": 1676441685.1907234, + "msecs": 190.72341918945312, + "relativeCreated": 82194.23866271973, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:57,598" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", + "asctime": "2023-02-15 07:14:45,190" }, { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve/set", - "b'{\"current_heating_setpoint\": 25}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.6168025, - "msecs": 616.802453994751, - "relativeCreated": 63513.04483413696, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{\"current_heating_setpoint\": 25}'", - "asctime": "2023-02-09 15:57:57,616" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Sending message with topic %s and payload %s", "args": [ - "zigbee/gfw/dirk/heating_valve", - "{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" + "zigbee/gfw/marion/heating_valve", + "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}" ], "levelname": "DEBUG", "levelno": 10, @@ -86207,22 +92719,22 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954677.6173086, - "msecs": 617.3086166381836, - "relativeCreated": 63513.550996780396, - "thread": 139894051313216, + "created": 1676441685.191118, + "msecs": 191.1180019378662, + "relativeCreated": 82194.63324546814, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/heating_valve and payload {\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:57:57,617" + "process": 509276, + "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}", + "asctime": "2023-02-15 07:14:45,191" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.valve_temperature_setpoint", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/valve_temperature_setpoint", - "b'25'" + "videv/gfw/marion/heating_valve/valve_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -86234,22 +92746,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.6179798, - "msecs": 617.9797649383545, - "relativeCreated": 63514.22214508057, - "thread": 139894051313216, + "created": 1676441685.191354, + "msecs": 191.35403633117676, + "relativeCreated": 82194.86927986145, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/valve_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:57,617" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:45,191" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", + "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" + "videv/gfw/marion/heating_valve/user_temperature_setpoint", + "b'23'" ], "levelname": "DEBUG", "levelno": 10, @@ -86261,22 +92773,22 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.618735, - "msecs": 618.7350749969482, - "relativeCreated": 63514.97745513916, - "thread": 139894051313216, + "created": 1676441685.1916094, + "msecs": 191.60938262939453, + "relativeCreated": 82195.12462615967, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:57,618" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", + "asctime": "2023-02-15 07:14:45,191" }, { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.user_temperature_setpoint", + "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/dirk/heating_valve/user_temperature_setpoint", - "b'25'" + "zigbee/gfw/marion/heating_valve", + "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'" ], "levelname": "DEBUG", "levelno": 10, @@ -86288,132 +92800,24 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954677.6193185, - "msecs": 619.3184852600098, - "relativeCreated": 63515.56086540222, - "thread": 139894051313216, + "created": 1676441685.191815, + "msecs": 191.81489944458008, + "relativeCreated": 82195.33014297485, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25'", - "asctime": "2023-02-09 15:57:57,619" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.6198828, - "msecs": 619.8828220367432, - "relativeCreated": 63516.125202178955, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:57,619" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/heating_valve", - "b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.620437, - "msecs": 620.4369068145752, - "relativeCreated": 63516.67928695679, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{\"current_heating_setpoint\": 25, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:57:57,620" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.6657836, - "msecs": 665.7836437225342, - "relativeCreated": 63562.026023864746, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:57:57,665" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.710968, - "msecs": 710.968017578125, - "relativeCreated": 63607.21039772034, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:57:57,710" + "process": 509276, + "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"battery\": 97}'", + "asctime": "2023-02-15 07:14:45,191" } ], - "time_consumption": 0.18755078315734863 + "time_consumption": 0.29383158683776855 }, { "name": "__tLogger__", "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", "args": [ - "25", + "23", "" ], "levelname": "INFO", @@ -86426,22 +92830,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954677.8992388, - "msecs": 899.2388248443604, - "relativeCreated": 63795.48120498657, - "thread": 139894075555840, + "created": 1676441685.4863825, + "msecs": 486.38248443603516, + "relativeCreated": 82489.89772796631, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Valve device temperature setpoint is correct (Content 25 and Type is ).", - "asctime": "2023-02-09 15:57:57,899", + "process": 509276, + "message": "Valve device temperature setpoint is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:45,486", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Valve device temperature setpoint", - "25", + "23", "" ], "levelname": "DEBUG", @@ -86454,15 +92858,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954677.8989449, - "msecs": 898.9448547363281, - "relativeCreated": 63795.18723487854, - "thread": 139894075555840, + "created": 1676441685.4861078, + "msecs": 486.10782623291016, + "relativeCreated": 82489.62306976318, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve device temperature setpoint): 25 ()", - "asctime": "2023-02-09 15:57:57,898" + "process": 509276, + "message": "Result (Valve device temperature setpoint): 23 ()", + "asctime": "2023-02-15 07:14:45,486" }, { "name": "__unittest__", @@ -86470,7 +92874,7 @@ "args": [ "Valve device temperature setpoint", "=", - "25", + "23", "" ], "levelname": "DEBUG", @@ -86483,24 +92887,24 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954677.8991172, - "msecs": 899.1172313690186, - "relativeCreated": 63795.35961151123, - "thread": 139894075555840, + "created": 1676441685.48626, + "msecs": 486.25993728637695, + "relativeCreated": 82489.77518081665, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve device temperature setpoint): result = 25 ()", - "asctime": "2023-02-09 15:57:57,899" + "process": 509276, + "message": "Expectation (Valve device temperature setpoint): result = 23 ()", + "asctime": "2023-02-15 07:14:45,486" } ], - "time_consumption": 0.00012159347534179688 + "time_consumption": 0.00012254714965820312 }, { "name": "__tLogger__", "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", "args": [ - "25", + "23", "" ], "levelname": "INFO", @@ -86513,22 +92917,22 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954677.8996027, - "msecs": 899.6026515960693, - "relativeCreated": 63795.84503173828, - "thread": 139894075555840, + "created": 1676441685.486838, + "msecs": 486.83810234069824, + "relativeCreated": 82490.35334587097, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 25 and Type is ).", - "asctime": "2023-02-09 15:57:57,899", + "process": 509276, + "message": "Virtual device valve temperature is correct (Content 23 and Type is ).", + "asctime": "2023-02-15 07:14:45,486", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ "Virtual device valve temperature", - "25", + "23", "" ], "levelname": "DEBUG", @@ -86541,15 +92945,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954677.8994133, - "msecs": 899.4133472442627, - "relativeCreated": 63795.655727386475, - "thread": 139894075555840, + "created": 1676441685.4866242, + "msecs": 486.62424087524414, + "relativeCreated": 82490.13948440552, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 25 ()", - "asctime": "2023-02-09 15:57:57,899" + "process": 509276, + "message": "Result (Virtual device valve temperature): 23 ()", + "asctime": "2023-02-15 07:14:45,486" }, { "name": "__unittest__", @@ -86557,7 +92961,7 @@ "args": [ "Virtual device valve temperature", "=", - "25", + "23", "" ], "levelname": "DEBUG", @@ -86570,5199 +92974,27 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954677.8995135, - "msecs": 899.5134830474854, - "relativeCreated": 63795.7558631897, - "thread": 139894075555840, + "created": 1676441685.486739, + "msecs": 486.738920211792, + "relativeCreated": 82490.25416374207, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 25 ()", - "asctime": "2023-02-09 15:57:57,899" - } - ], - "time_consumption": 8.916854858398438e-05 - } - ], - "time_consumption": 1.2095274925231934, - "time_start": "2023-02-09 15:57:56,690", - "time_finished": "2023-02-09 15:57:57,899" - }, - "Brightness test for device and virtual device: zigbee/gfw/dirk/main_light": { - "name": "__tLogger__", - "msg": "Brightness test for device and virtual device: zigbee/gfw/dirk/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_brightness", - "created": 1675954677.9001307, - "msecs": 900.1307487487793, - "relativeCreated": 63796.37312889099, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness test for device and virtual device: zigbee/gfw/dirk/main_light", - "asctime": "2023-02-09 15:57:57,900", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 57, - "funcName": "__test_brightness__", - "created": 1675954678.2028842, - "msecs": 202.88419723510742, - "relativeCreated": 64099.12657737732, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:57:58,202", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954677.9004552, - "msecs": 900.4552364349365, - "relativeCreated": 63796.69761657715, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:57,900" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954677.9010262, - "msecs": 901.0262489318848, - "relativeCreated": 63797.2686290741, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:57,901" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.9020414, - "msecs": 902.0414352416992, - "relativeCreated": 63798.28381538391, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:57,902" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.9027438, - "msecs": 902.7438163757324, - "relativeCreated": 63798.986196517944, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:57,902" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.9499013, - "msecs": 949.9013423919678, - "relativeCreated": 63846.14372253418, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:57,949" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.9505932, - "msecs": 950.5932331085205, - "relativeCreated": 63846.83561325073, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:57,950" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.9511397, - "msecs": 951.1396884918213, - "relativeCreated": 63847.38206863403, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:57,951" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.9516435, - "msecs": 951.6434669494629, - "relativeCreated": 63847.885847091675, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:57,951" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.952143, - "msecs": 952.1429538726807, - "relativeCreated": 63848.38533401489, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:57:57,952" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954677.9526749, - "msecs": 952.6748657226562, - "relativeCreated": 63848.91724586487, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:57,952" - } - ], - "time_consumption": 0.25020933151245117 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954678.2035332, - "msecs": 203.53317260742188, - "relativeCreated": 64099.775552749634, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:58,203", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954678.2032847, - "msecs": 203.28474044799805, - "relativeCreated": 64099.52712059021, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:58,203" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954678.203423, - "msecs": 203.42302322387695, - "relativeCreated": 64099.66540336609, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:58,203" - } - ], - "time_consumption": 0.00011014938354492188 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954678.5049334, - "msecs": 504.93335723876953, - "relativeCreated": 64401.17573738098, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:58,504", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954678.2038844, - "msecs": 203.88436317443848, - "relativeCreated": 64100.12674331665, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:58,203" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.205028, - "msecs": 205.02805709838867, - "relativeCreated": 64101.2704372406, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:58,205" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.2075012, - "msecs": 207.50117301940918, - "relativeCreated": 64103.74355316162, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:58,207" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.2081704, - "msecs": 208.17041397094727, - "relativeCreated": 64104.41279411316, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:58,208" - } - ], - "time_consumption": 0.29676294326782227 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954678.5056546, - "msecs": 505.65457344055176, - "relativeCreated": 64401.896953582764, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:58,505", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954678.5054033, - "msecs": 505.4032802581787, - "relativeCreated": 64401.64566040039, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:58,505" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954678.5055468, - "msecs": 505.54680824279785, - "relativeCreated": 64401.78918838501, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:58,505" - } - ], - "time_consumption": 0.00010776519775390625 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954678.506014, - "msecs": 506.0141086578369, - "relativeCreated": 64402.25648880005, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:58,506", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954678.5058262, - "msecs": 505.8262348175049, - "relativeCreated": 64402.06861495972, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:58,505" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954678.5059252, - "msecs": 505.92517852783203, - "relativeCreated": 64402.167558670044, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:58,505" - } - ], - "time_consumption": 8.893013000488281e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954678.8083074, - "msecs": 808.307409286499, - "relativeCreated": 64704.54978942871, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:58,808", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954678.5063488, - "msecs": 506.3488483428955, - "relativeCreated": 64402.59122848511, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:58,506" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.5074627, - "msecs": 507.462739944458, - "relativeCreated": 64403.70512008667, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:58,507" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.5098774, - "msecs": 509.87744331359863, - "relativeCreated": 64406.11982345581, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:58,509" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954678.5103142, - "msecs": 510.3142261505127, - "relativeCreated": 64406.556606292725, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:58,510" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.5113316, - "msecs": 511.33155822753906, - "relativeCreated": 64407.57393836975, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:58,511" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.556483, - "msecs": 556.4830303192139, - "relativeCreated": 64452.725410461426, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:58,556" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.557228, - "msecs": 557.2280883789062, - "relativeCreated": 64453.47046852112, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:58,557" - } - ], - "time_consumption": 0.2510793209075928 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954678.8089569, - "msecs": 808.9568614959717, - "relativeCreated": 64705.19924163818, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:58,808", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954678.8087134, - "msecs": 808.713436126709, - "relativeCreated": 64704.95581626892, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:58,808" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954678.8088496, - "msecs": 808.849573135376, - "relativeCreated": 64705.09195327759, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:58,808" - } - ], - "time_consumption": 0.00010728836059570312 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954678.8093953, - "msecs": 809.3953132629395, - "relativeCreated": 64705.63769340515, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:58,809", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954678.8091688, - "msecs": 809.168815612793, - "relativeCreated": 64705.411195755005, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:57:58,809" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954678.8093078, - "msecs": 809.3078136444092, - "relativeCreated": 64705.55019378662, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:58,809" - } - ], - "time_consumption": 8.749961853027344e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954679.1107056, - "msecs": 110.70561408996582, - "relativeCreated": 65006.94799423218, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:57:59,110", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954678.8097427, - "msecs": 809.7426891326904, - "relativeCreated": 64705.9850692749, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:58,809" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.810818, - "msecs": 810.8179569244385, - "relativeCreated": 64707.06033706665, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:58,810" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.8133104, - "msecs": 813.3103847503662, - "relativeCreated": 64709.55276489258, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:57:58,813" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954678.813979, - "msecs": 813.978910446167, - "relativeCreated": 64710.22129058838, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:58,813" - } - ], - "time_consumption": 0.29672670364379883 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954679.111281, - "msecs": 111.28091812133789, - "relativeCreated": 65007.52329826355, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:59,111", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954679.1110697, - "msecs": 111.0696792602539, - "relativeCreated": 65007.312059402466, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:57:59,111" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954679.1111877, - "msecs": 111.18769645690918, - "relativeCreated": 65007.43007659912, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:59,111" - } - ], - "time_consumption": 9.322166442871094e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954679.111618, - "msecs": 111.6180419921875, - "relativeCreated": 65007.8604221344, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:57:59,111", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954679.1114278, - "msecs": 111.42778396606445, - "relativeCreated": 65007.67016410828, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:57:59,111" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954679.1115415, - "msecs": 111.5415096282959, - "relativeCreated": 65007.78388977051, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:57:59,111" - } - ], - "time_consumption": 7.653236389160156e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954679.4137776, - "msecs": 413.77758979797363, - "relativeCreated": 65310.019969940186, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:57:59,413", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954679.1118908, - "msecs": 111.89079284667969, - "relativeCreated": 65008.13317298889, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:57:59,111" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.1128688, - "msecs": 112.8687858581543, - "relativeCreated": 65009.111166000366, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:57:59,112" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.1143563, - "msecs": 114.35627937316895, - "relativeCreated": 65010.59865951538, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:57:59,114" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954679.1147182, - "msecs": 114.71819877624512, - "relativeCreated": 65010.96057891846, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:59,114" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.1156414, - "msecs": 115.64135551452637, - "relativeCreated": 65011.88373565674, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:59,115" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.1602542, - "msecs": 160.25424003601074, - "relativeCreated": 65056.49662017822, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:57:59,160" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.160921, - "msecs": 160.9210968017578, - "relativeCreated": 65057.16347694397, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:59,160" - } - ], - "time_consumption": 0.2528564929962158 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954679.4144468, - "msecs": 414.4468307495117, - "relativeCreated": 65310.68921089172, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:57:59,414", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954679.4141755, - "msecs": 414.17551040649414, - "relativeCreated": 65310.417890548706, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:57:59,414" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954679.4143376, - "msecs": 414.3376350402832, - "relativeCreated": 65310.580015182495, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:57:59,414" - } - ], - "time_consumption": 0.00010919570922851562 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "__test_brightness__", - "created": 1675954679.7157032, - "msecs": 715.7032489776611, - "relativeCreated": 65611.94562911987, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:57:59,715", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954679.414697, - "msecs": 414.69693183898926, - "relativeCreated": 65310.9393119812, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:57:59,414" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.4158628, - "msecs": 415.8627986907959, - "relativeCreated": 65312.10517883301, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:57:59,415" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.4198182, - "msecs": 419.8181629180908, - "relativeCreated": 65316.0605430603, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:57:59,419" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.420424, - "msecs": 420.4239845275879, - "relativeCreated": 65316.6663646698, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:59,420" - } - ], - "time_consumption": 0.29527926445007324 - } - ], - "time_consumption": 1.8155725002288818, - "time_start": "2023-02-09 15:57:57,900", - "time_finished": "2023-02-09 15:57:59,715" - }, - "Color temperature test for device and virtual device: zigbee/gfw/dirk/main_light": { - "name": "__tLogger__", - "msg": "Color temperature test for device and virtual device: zigbee/gfw/dirk/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 81, - "funcName": "test_color_temp", - "created": 1675954679.7164648, - "msecs": 716.4647579193115, - "relativeCreated": 65612.70713806152, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Color temperature test for device and virtual device: zigbee/gfw/dirk/main_light", - "asctime": "2023-02-09 15:57:59,716", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 88, - "funcName": "__test_color_temp__", - "created": 1675954680.0181422, - "msecs": 18.142223358154297, - "relativeCreated": 65914.38460350037, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:58:00,018", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954679.716813, - "msecs": 716.8130874633789, - "relativeCreated": 65613.05546760559, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:57:59,716" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954679.717407, - "msecs": 717.4069881439209, - "relativeCreated": 65613.64936828613, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:57:59,717" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.7184067, - "msecs": 718.4066772460938, - "relativeCreated": 65614.6490573883, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:57:59,718" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.719081, - "msecs": 719.080924987793, - "relativeCreated": 65615.32330513, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:57:59,719" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.7657878, - "msecs": 765.7878398895264, - "relativeCreated": 65662.03022003174, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:57:59,765" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954679.7664678, - "msecs": 766.467809677124, - "relativeCreated": 65662.71018981934, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:57:59,766" - } - ], - "time_consumption": 0.2516744136810303 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954680.0187697, - "msecs": 18.76974105834961, - "relativeCreated": 65915.01212120056, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:00,018", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954680.0185244, - "msecs": 18.5244083404541, - "relativeCreated": 65914.76678848267, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:58:00,018" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954680.0186625, - "msecs": 18.662452697753906, - "relativeCreated": 65914.90483283997, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:58:00,018" - } - ], - "time_consumption": 0.00010728836059570312 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954680.3202384, - "msecs": 320.2383518218994, - "relativeCreated": 66216.48073196411, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:58:00,320", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954680.0191202, - "msecs": 19.120216369628906, - "relativeCreated": 65915.36259651184, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:00,019" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.0202181, - "msecs": 20.2181339263916, - "relativeCreated": 65916.4605140686, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:00,020" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.022701, - "msecs": 22.701025009155273, - "relativeCreated": 65918.94340515137, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:58:00,022" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.0234008, - "msecs": 23.40078353881836, - "relativeCreated": 65919.64316368103, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:00,023" - } - ], - "time_consumption": 0.29683756828308105 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954680.3209064, - "msecs": 320.906400680542, - "relativeCreated": 66217.14878082275, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:58:00,320", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954680.3206663, - "msecs": 320.6663131713867, - "relativeCreated": 66216.9086933136, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:58:00,320" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954680.3208008, - "msecs": 320.80078125, - "relativeCreated": 66217.04316139221, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:58:00,320" - } - ], - "time_consumption": 0.00010561943054199219 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954680.3213074, - "msecs": 321.3074207305908, - "relativeCreated": 66217.5498008728, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:58:00,321", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954680.3211107, - "msecs": 321.11072540283203, - "relativeCreated": 66217.35310554504, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:58:00,321" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954680.321216, - "msecs": 321.2161064147949, - "relativeCreated": 66217.458486557, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:58:00,321" - } - ], - "time_consumption": 9.131431579589844e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954680.622468, - "msecs": 622.4679946899414, - "relativeCreated": 66518.71037483215, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:58:00,622", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954680.3216004, - "msecs": 321.60043716430664, - "relativeCreated": 66217.84281730652, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:58:00,321" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.3226888, - "msecs": 322.6888179779053, - "relativeCreated": 66218.93119812012, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:58:00,322" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.3243556, - "msecs": 324.3556022644043, - "relativeCreated": 66220.59798240662, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:58:00,324" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954680.3247693, - "msecs": 324.7692584991455, - "relativeCreated": 66221.01163864136, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:00,324" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.3263445, - "msecs": 326.34449005126953, - "relativeCreated": 66222.58687019348, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:00,326" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.3696175, - "msecs": 369.6174621582031, - "relativeCreated": 66265.85984230042, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:58:00,369" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.3703642, - "msecs": 370.3641891479492, - "relativeCreated": 66266.60656929016, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:00,370" - } - ], - "time_consumption": 0.2521038055419922 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954680.623105, - "msecs": 623.1050491333008, - "relativeCreated": 66519.34742927551, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:00,623", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954680.6228683, - "msecs": 622.8682994842529, - "relativeCreated": 66519.11067962646, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:58:00,622" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954680.6230004, - "msecs": 623.0003833770752, - "relativeCreated": 66519.24276351929, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:58:00,623" - } - ], - "time_consumption": 0.00010466575622558594 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954680.6234586, - "msecs": 623.4586238861084, - "relativeCreated": 66519.70100402832, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:00,623", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954680.623272, - "msecs": 623.2719421386719, - "relativeCreated": 66519.51432228088, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:58:00,623" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954680.6233702, - "msecs": 623.3701705932617, - "relativeCreated": 66519.61255073547, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:58:00,623" - } - ], - "time_consumption": 8.845329284667969e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954680.9248013, - "msecs": 924.8013496398926, - "relativeCreated": 66821.0437297821, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:58:00,924", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954680.6237967, - "msecs": 623.7967014312744, - "relativeCreated": 66520.03908157349, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:00,623" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.6248865, - "msecs": 624.8865127563477, - "relativeCreated": 66521.12889289856, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:00,624" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.6273687, - "msecs": 627.368688583374, - "relativeCreated": 66523.61106872559, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:58:00,627" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.6280494, - "msecs": 628.049373626709, - "relativeCreated": 66524.29175376892, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:00,628" - } - ], - "time_consumption": 0.2967519760131836 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954680.9254894, - "msecs": 925.4894256591797, - "relativeCreated": 66821.73180580139, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:58:00,925", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954680.925245, - "msecs": 925.2450466156006, - "relativeCreated": 66821.48742675781, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:58:00,925" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954680.9253836, - "msecs": 925.3835678100586, - "relativeCreated": 66821.62594795227, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:58:00,925" - } - ], - "time_consumption": 0.00010585784912109375 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954680.9258637, - "msecs": 925.8637428283691, - "relativeCreated": 66822.10612297058, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:58:00,925", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954680.925655, - "msecs": 925.6548881530762, - "relativeCreated": 66821.89726829529, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:58:00,925" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954680.925748, - "msecs": 925.7481098175049, - "relativeCreated": 66821.99048995972, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:58:00,925" - } - ], - "time_consumption": 0.00011563301086425781 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954681.2275455, - "msecs": 227.54549980163574, - "relativeCreated": 67123.78787994385, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:58:01,227", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954680.926155, - "msecs": 926.1550903320312, - "relativeCreated": 66822.39747047424, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:58:00,926" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.9272454, - "msecs": 927.2453784942627, - "relativeCreated": 66823.48775863647, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:58:00,927" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.9288838, - "msecs": 928.8837909698486, - "relativeCreated": 66825.12617111206, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:58:00,928" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954680.9293485, - "msecs": 929.3484687805176, - "relativeCreated": 66825.59084892273, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:00,929" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.930361, - "msecs": 930.3610324859619, - "relativeCreated": 66826.60341262817, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:00,930" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.9735787, - "msecs": 973.578691482544, - "relativeCreated": 66869.82107162476, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:58:00,973" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954680.9743161, - "msecs": 974.3161201477051, - "relativeCreated": 66870.55850028992, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:00,974" - } - ], - "time_consumption": 0.25322937965393066 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954681.2282083, - "msecs": 228.2083034515381, - "relativeCreated": 67124.45068359375, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:01,228", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954681.2279613, - "msecs": 227.96130180358887, - "relativeCreated": 67124.2036819458, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:58:01,227" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954681.2281017, - "msecs": 228.1017303466797, - "relativeCreated": 67124.34411048889, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:58:01,228" - } - ], - "time_consumption": 0.00010657310485839844 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 105, - "funcName": "__test_color_temp__", - "created": 1675954681.5293784, - "msecs": 529.3784141540527, - "relativeCreated": 67425.62079429626, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:58:01,529", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954681.2284617, - "msecs": 228.46174240112305, - "relativeCreated": 67124.70412254333, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:01,228" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.2296226, - "msecs": 229.62260246276855, - "relativeCreated": 67125.86498260498, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:01,229" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.2342904, - "msecs": 234.29036140441895, - "relativeCreated": 67130.53274154663, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:01,234" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.234986, - "msecs": 234.9860668182373, - "relativeCreated": 67131.22844696045, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:01,234" - } - ], - "time_consumption": 0.29439234733581543 - } - ], - "time_consumption": 1.8129136562347412, - "time_start": "2023-02-09 15:57:59,716", - "time_finished": "2023-02-09 15:58:01,529" - }, - "Power On/ Off test for device and virtual device: shellies/gfw/dirk/main_light": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: shellies/gfw/dirk/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954681.530042, - "msecs": 530.0419330596924, - "relativeCreated": 67426.2843132019, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: shellies/gfw/dirk/main_light", - "asctime": "2023-02-09 15:58:01,530", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954681.530539, - "msecs": 530.5390357971191, - "relativeCreated": 67426.78141593933, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:01,530", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954681.53032, - "msecs": 530.3199291229248, - "relativeCreated": 67426.56230926514, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:01,530" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954681.5304399, - "msecs": 530.4398536682129, - "relativeCreated": 67426.68223381042, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:01,530" + "process": 509276, + "message": "Expectation (Virtual device valve temperature): result = 23 ()", + "asctime": "2023-02-15 07:14:45,486" } ], "time_consumption": 9.918212890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954681.8329904, - "msecs": 832.9904079437256, - "relativeCreated": 67729.23278808594, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:01,832", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954681.530747, - "msecs": 530.7469367980957, - "relativeCreated": 67426.98931694031, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:01,530" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954681.5312333, - "msecs": 531.2333106994629, - "relativeCreated": 67427.47569084167, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:01,531" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.532096, - "msecs": 532.0959091186523, - "relativeCreated": 67428.33828926086, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:01,532" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.532682, - "msecs": 532.681941986084, - "relativeCreated": 67428.9243221283, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:01,532" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.5778809, - "msecs": 577.880859375, - "relativeCreated": 67474.12323951721, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:01,577" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.5785313, - "msecs": 578.5312652587891, - "relativeCreated": 67474.773645401, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:01,578" - } - ], - "time_consumption": 0.2544591426849365 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954681.833628, - "msecs": 833.6279392242432, - "relativeCreated": 67729.87031936646, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:01,833", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954681.8334162, - "msecs": 833.416223526001, - "relativeCreated": 67729.65860366821, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:01,833" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954681.833535, - "msecs": 833.5349559783936, - "relativeCreated": 67729.7773361206, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:01,833" - } - ], - "time_consumption": 9.298324584960938e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954681.833973, - "msecs": 833.9729309082031, - "relativeCreated": 67730.21531105042, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:01,833", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954681.8338099, - "msecs": 833.8098526000977, - "relativeCreated": 67730.05223274231, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:01,833" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954681.833897, - "msecs": 833.8971138000488, - "relativeCreated": 67730.13949394226, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:01,833" - } - ], - "time_consumption": 7.581710815429688e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954682.1353002, - "msecs": 135.3001594543457, - "relativeCreated": 68031.54253959656, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:02,135", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954681.8342257, - "msecs": 834.2256546020508, - "relativeCreated": 67730.46803474426, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/main_light/state and payload false", - "asctime": "2023-02-09 15:58:01,834" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.8352082, - "msecs": 835.2081775665283, - "relativeCreated": 67731.45055770874, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:01,835" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.836689, - "msecs": 836.6889953613281, - "relativeCreated": 67732.93137550354, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:01,836" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954681.836988, - "msecs": 836.9879722595215, - "relativeCreated": 67733.23035240173, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:01,836" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.8379705, - "msecs": 837.970495223999, - "relativeCreated": 67734.21287536621, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:01,837" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.927033, - "msecs": 927.0329475402832, - "relativeCreated": 67823.2753276825, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:01,927" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954681.9278176, - "msecs": 927.8175830841064, - "relativeCreated": 67824.05996322632, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:01,927" - } - ], - "time_consumption": 0.20748257637023926 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954682.135956, - "msecs": 135.9560489654541, - "relativeCreated": 68032.19842910767, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:02,135", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954682.135713, - "msecs": 135.7131004333496, - "relativeCreated": 68031.95548057556, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:02,135" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954682.1358469, - "msecs": 135.8468532562256, - "relativeCreated": 68032.08923339844, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:02,135" - } - ], - "time_consumption": 0.00010919570922851562 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954682.1363125, - "msecs": 136.31248474121094, - "relativeCreated": 68032.55486488342, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:02,136", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954682.1361265, - "msecs": 136.12651824951172, - "relativeCreated": 68032.36889839172, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:02,136" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954682.1362257, - "msecs": 136.22570037841797, - "relativeCreated": 68032.46808052063, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:02,136" - } - ], - "time_consumption": 8.678436279296875e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954682.4389849, - "msecs": 438.98487091064453, - "relativeCreated": 68335.22725105286, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:02,438", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954682.1365428, - "msecs": 136.54279708862305, - "relativeCreated": 68032.78517723083, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:02,136" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954682.1371272, - "msecs": 137.12716102600098, - "relativeCreated": 68033.36954116821, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/dirk/main_light and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:02,137" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.1381521, - "msecs": 138.1521224975586, - "relativeCreated": 68034.39450263977, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:02,138" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.dirk.main_light", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/dirk/main_light", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.138826, - "msecs": 138.8258934020996, - "relativeCreated": 68035.06827354431, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/dirk/main_light and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:02,138" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.1862288, - "msecs": 186.22875213623047, - "relativeCreated": 68082.47113227844, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:02,186" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.187004, - "msecs": 187.00408935546875, - "relativeCreated": 68083.24646949768, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:02,187" - } - ], - "time_consumption": 0.2519807815551758 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954682.4396665, - "msecs": 439.6665096282959, - "relativeCreated": 68335.90888977051, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:02,439", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954682.4394202, - "msecs": 439.420223236084, - "relativeCreated": 68335.6626033783, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:02,439" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954682.439559, - "msecs": 439.5589828491211, - "relativeCreated": 68335.80136299133, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:02,439" - } - ], - "time_consumption": 0.00010752677917480469 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954682.4400222, - "msecs": 440.02223014831543, - "relativeCreated": 68336.26461029053, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:02,440", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954682.439839, - "msecs": 439.8388862609863, - "relativeCreated": 68336.0812664032, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:02,439" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954682.4399357, - "msecs": 439.93568420410156, - "relativeCreated": 68336.17806434631, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:02,439" - } - ], - "time_consumption": 8.654594421386719e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954682.7413046, - "msecs": 741.3046360015869, - "relativeCreated": 68637.5470161438, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:02,741", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954682.4403067, - "msecs": 440.3066635131836, - "relativeCreated": 68336.5490436554, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/main_light/state and payload false", - "asctime": "2023-02-09 15:58:02,440" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.4414213, - "msecs": 441.4212703704834, - "relativeCreated": 68337.6636505127, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:02,441" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.4430053, - "msecs": 443.0053234100342, - "relativeCreated": 68339.24770355225, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:02,443" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954682.4433548, - "msecs": 443.35484504699707, - "relativeCreated": 68339.59722518921, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/dirk/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:02,443" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.dirk.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/dirk/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.4444342, - "msecs": 444.43416595458984, - "relativeCreated": 68340.6765460968, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/dirk/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:02,444" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.5341122, - "msecs": 534.1122150421143, - "relativeCreated": 68430.35459518433, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:02,534" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.53487, - "msecs": 534.869909286499, - "relativeCreated": 68431.11228942871, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:02,534" - } - ], - "time_consumption": 0.2064347267150879 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954682.741948, - "msecs": 741.9478893280029, - "relativeCreated": 68638.19026947021, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:02,741", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954682.7417111, - "msecs": 741.7111396789551, - "relativeCreated": 68637.95351982117, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:02,741" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954682.7418447, - "msecs": 741.844654083252, - "relativeCreated": 68638.08703422546, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:02,741" - } - ], - "time_consumption": 0.00010323524475097656 } ], - "time_consumption": 1.2119059562683105, - "time_start": "2023-02-09 15:58:01,530", - "time_finished": "2023-02-09 15:58:02,741" + "time_consumption": 1.2108581066131592, + "time_start": "2023-02-15 07:14:44,275", + "time_finished": "2023-02-15 07:14:45,486" }, - "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/4": { + "Power On/ Off test for device and virtual device: shellies/gfw/marion/main_light": { "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/4", + "msg": "Power On/ Off test for device and virtual device: shellies/gfw/marion/main_light", "args": null, "levelname": "INFO", "levelno": 20, @@ -91774,15 +93006,15 @@ "stack_info": null, "lineno": 27, "funcName": "test_power_on_off", - "created": 1675954682.7425237, - "msecs": 742.5236701965332, - "relativeCreated": 68638.76605033875, - "thread": 139894075555840, + "created": 1676441685.4873886, + "msecs": 487.38861083984375, + "relativeCreated": 82490.90385437012, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: my_apps/gfw/dirk/powerplug/output/4", - "asctime": "2023-02-09 15:58:02,742", + "process": 509276, + "message": "Power On/ Off test for device and virtual device: shellies/gfw/marion/main_light", + "asctime": "2023-02-15 07:14:45,487", "moduleLogger": [], "testcaseLogger": [ { @@ -91802,15 +93034,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954682.7429755, - "msecs": 742.9754734039307, - "relativeCreated": 68639.21785354614, - "thread": 139894075555840, + "created": 1676441685.4878387, + "msecs": 487.8387451171875, + "relativeCreated": 82491.35398864746, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:02,742", + "asctime": "2023-02-15 07:14:45,487", "moduleLogger": [ { "name": "__unittest__", @@ -91830,15 +93062,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954682.742768, - "msecs": 742.7680492401123, - "relativeCreated": 68639.01042938232, - "thread": 139894075555840, + "created": 1676441685.4876165, + "msecs": 487.61653900146484, + "relativeCreated": 82491.13178253174, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:02,742" + "asctime": "2023-02-15 07:14:45,487" }, { "name": "__unittest__", @@ -91859,18 +93091,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954682.7428803, - "msecs": 742.8803443908691, - "relativeCreated": 68639.12272453308, - "thread": 139894075555840, + "created": 1676441685.4877346, + "msecs": 487.7345561981201, + "relativeCreated": 82491.2497997284, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:02,742" + "asctime": "2023-02-15 07:14:45,487" } ], - "time_consumption": 9.512901306152344e-05 + "time_consumption": 0.00010418891906738281 }, { "name": "__tLogger__", @@ -91888,1368 +93120,21 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954683.0443196, - "msecs": 44.31962966918945, - "relativeCreated": 68940.5620098114, - "thread": 139894075555840, + "created": 1676441685.7892766, + "msecs": 789.2765998840332, + "relativeCreated": 82792.7918434143, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:03,044", + "asctime": "2023-02-15 07:14:45,789", "moduleLogger": [ { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", + "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "my_apps/gfw/dirk/powerplug/output/4", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954682.7432592, - "msecs": 743.2591915130615, - "relativeCreated": 68639.50157165527, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", - "asctime": "2023-02-09 15:58:02,743" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/4", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.7442985, - "msecs": 744.2984580993652, - "relativeCreated": 68640.54083824158, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", - "asctime": "2023-02-09 15:58:02,744" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.7464979, - "msecs": 746.4978694915771, - "relativeCreated": 68642.74024963379, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true'", - "asctime": "2023-02-09 15:58:02,746" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954682.747164, - "msecs": 747.1640110015869, - "relativeCreated": 68643.4063911438, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:02,747" - } - ], - "time_consumption": 0.29715561866760254 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954683.0449662, - "msecs": 44.96622085571289, - "relativeCreated": 68941.20860099792, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:03,044", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954683.0447261, - "msecs": 44.72613334655762, - "relativeCreated": 68940.96851348877, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:03,044" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954683.0448585, - "msecs": 44.858455657958984, - "relativeCreated": 68941.10083580017, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:03,044" - } - ], - "time_consumption": 0.00010776519775390625 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954683.0454028, - "msecs": 45.40276527404785, - "relativeCreated": 68941.64514541626, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:03,045", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954683.0451791, - "msecs": 45.179128646850586, - "relativeCreated": 68941.42150878906, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:03,045" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954683.0452824, - "msecs": 45.28236389160156, - "relativeCreated": 68941.52474403381, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:03,045" - } - ], - "time_consumption": 0.00012040138244628906 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954683.3468137, - "msecs": 346.8136787414551, - "relativeCreated": 69243.05605888367, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:03,346", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954683.045686, - "msecs": 45.68600654602051, - "relativeCreated": 68941.92838668823, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/pc_dock/state and payload false", - "asctime": "2023-02-09 15:58:03,045" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.0467844, - "msecs": 46.784400939941406, - "relativeCreated": 68943.02678108215, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", - "asctime": "2023-02-09 15:58:03,046" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/4/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.0484707, - "msecs": 48.47073554992676, - "relativeCreated": 68944.71311569214, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4/set and payload b'false'", - "asctime": "2023-02-09 15:58:03,048" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/4", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954683.0488133, - "msecs": 48.8133430480957, - "relativeCreated": 68945.05572319031, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", - "asctime": "2023-02-09 15:58:03,048" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/4", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.0498624, - "msecs": 49.86238479614258, - "relativeCreated": 68946.10476493835, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", - "asctime": "2023-02-09 15:58:03,049" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.0935767, - "msecs": 93.57666969299316, - "relativeCreated": 68989.8190498352, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", - "asctime": "2023-02-09 15:58:03,093" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.0943167, - "msecs": 94.31672096252441, - "relativeCreated": 68990.55910110474, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:03,094" - } - ], - "time_consumption": 0.25249695777893066 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954683.3475053, - "msecs": 347.5053310394287, - "relativeCreated": 69243.74771118164, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:03,347", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954683.347225, - "msecs": 347.2249507904053, - "relativeCreated": 69243.46733093262, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:03,347" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954683.3473961, - "msecs": 347.3961353302002, - "relativeCreated": 69243.63851547241, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:03,347" - } - ], - "time_consumption": 0.00010919570922851562 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954683.3478673, - "msecs": 347.8672504425049, - "relativeCreated": 69244.10963058472, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:03,347", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954683.347679, - "msecs": 347.67889976501465, - "relativeCreated": 69243.92127990723, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:03,347" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954683.3477786, - "msecs": 347.7785587310791, - "relativeCreated": 69244.02093887329, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:03,347" - } - ], - "time_consumption": 8.869171142578125e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954683.6500509, - "msecs": 650.0508785247803, - "relativeCreated": 69546.29325866699, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:03,650", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/4", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954683.348129, - "msecs": 348.1290340423584, - "relativeCreated": 69244.37141418457, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload true", - "asctime": "2023-02-09 15:58:03,348" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/4", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.3492124, - "msecs": 349.2124080657959, - "relativeCreated": 69245.45478820801, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'true'", - "asctime": "2023-02-09 15:58:03,349" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.3513997, - "msecs": 351.39966011047363, - "relativeCreated": 69247.64204025269, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true'", - "asctime": "2023-02-09 15:58:03,351" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.3520536, - "msecs": 352.0536422729492, - "relativeCreated": 69248.29602241516, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:03,352" - } - ], - "time_consumption": 0.29799723625183105 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954683.6507268, - "msecs": 650.7267951965332, - "relativeCreated": 69546.96917533875, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:03,650", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954683.6504567, - "msecs": 650.4566669464111, - "relativeCreated": 69546.69904708862, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:03,650" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954683.6505885, - "msecs": 650.5885124206543, - "relativeCreated": 69546.83089256287, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:03,650" - } - ], - "time_consumption": 0.00013828277587890625 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954683.6510904, - "msecs": 651.0903835296631, - "relativeCreated": 69547.33276367188, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:03,651", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954683.650905, - "msecs": 650.9048938751221, - "relativeCreated": 69547.14727401733, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:03,650" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954683.651003, - "msecs": 651.0028839111328, - "relativeCreated": 69547.24526405334, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:03,651" - } - ], - "time_consumption": 8.749961853027344e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954683.95219, - "msecs": 952.1899223327637, - "relativeCreated": 69848.43230247498, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:03,952", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954683.6513631, - "msecs": 651.3631343841553, - "relativeCreated": 69547.60551452637, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/dirk/pc_dock/state and payload false", - "asctime": "2023-02-09 15:58:03,651" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.6524773, - "msecs": 652.4772644042969, - "relativeCreated": 69548.71964454651, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", - "asctime": "2023-02-09 15:58:03,652" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/4/set", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.6541207, - "msecs": 654.120683670044, - "relativeCreated": 69550.36306381226, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4/set and payload b'false'", - "asctime": "2023-02-09 15:58:03,654" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/4", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954683.6544719, - "msecs": 654.4718742370605, - "relativeCreated": 69550.71425437927, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic my_apps/gfw/dirk/powerplug/output/4 and payload false", - "asctime": "2023-02-09 15:58:03,654" - }, - { - "name": "smart_brain.mqtt.my_apps.gfw.dirk.powerplug.output.4", - "msg": "Received message with topic %s and payload %s", - "args": [ - "my_apps/gfw/dirk/powerplug/output/4", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.6554837, - "msecs": 655.4837226867676, - "relativeCreated": 69551.72610282898, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic my_apps/gfw/dirk/powerplug/output/4 and payload b'false'", - "asctime": "2023-02-09 15:58:03,655" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.7000124, - "msecs": 700.0124454498291, - "relativeCreated": 69596.25482559204, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false'", - "asctime": "2023-02-09 15:58:03,700" - }, - { - "name": "smart_brain.mqtt.videv.gfw.dirk.pc_dock.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/dirk/pc_dock/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.7007275, - "msecs": 700.7274627685547, - "relativeCreated": 69596.96984291077, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/dirk/pc_dock/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:03,700" - } - ], - "time_consumption": 0.251462459564209 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954683.9527981, - "msecs": 952.7981281280518, - "relativeCreated": 69849.04050827026, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:03,952", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954683.952587, - "msecs": 952.5868892669678, - "relativeCreated": 69848.82926940918, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:03,952" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954683.9527056, - "msecs": 952.7056217193604, - "relativeCreated": 69848.94800186157, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:03,952" - } - ], - "time_consumption": 9.250640869140625e-05 - } - ], - "time_consumption": 1.2102744579315186, - "time_start": "2023-02-09 15:58:02,742", - "time_finished": "2023-02-09 15:58:03,952" - }, - "Brightness test for device and virtual device: zigbee/gfw/floor/main_light_1": { - "name": "__tLogger__", - "msg": "Brightness test for device and virtual device: zigbee/gfw/floor/main_light_1", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_brightness", - "created": 1675954683.9532967, - "msecs": 953.2966613769531, - "relativeCreated": 69849.53904151917, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness test for device and virtual device: zigbee/gfw/floor/main_light_1", - "asctime": "2023-02-09 15:58:03,953", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 57, - "funcName": "__test_brightness__", - "created": 1675954684.255554, - "msecs": 255.5539608001709, - "relativeCreated": 70151.79634094238, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:58:04,255", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", + "shellies/gfw/marion/main_light/relay/0", "on" ], "levelname": "DEBUG", @@ -93262,21 +93147,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954683.9536085, - "msecs": 953.608512878418, - "relativeCreated": 69849.85089302063, - "thread": 139894075555840, + "created": 1676441685.488112, + "msecs": 488.1119728088379, + "relativeCreated": 82491.62721633911, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:03,953" + "process": 509276, + "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on", + "asctime": "2023-02-15 07:14:45,488" }, { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/gfw/floor/main_light/relay/0", + "shellies/gfw/marion/main_light/relay/0", "b'on'" ], "levelname": "DEBUG", @@ -93289,129 +93174,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954683.9546435, - "msecs": 954.6434879302979, - "relativeCreated": 69850.88586807251, - "thread": 139894051313216, + "created": 1676441685.4893448, + "msecs": 489.34483528137207, + "relativeCreated": 82492.86007881165, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:03,954" + "process": 509276, + "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on'", + "asctime": "2023-02-15 07:14:45,489" }, { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", + "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "zigbee/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.957175, - "msecs": 957.1750164031982, - "relativeCreated": 69853.41739654541, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:03,957" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954683.9575005, - "msecs": 957.5004577636719, - "relativeCreated": 69853.74283790588, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:03,957" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.9581633, - "msecs": 958.1632614135742, - "relativeCreated": 69854.40564155579, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:03,958" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954683.9584384, - "msecs": 958.4383964538574, - "relativeCreated": 69854.68077659607, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:03,958" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", + "videv/gfw/marion/main_light/state", "b'true'" ], "levelname": "DEBUG", @@ -93424,4140 +93201,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954683.9591231, - "msecs": 959.1231346130371, - "relativeCreated": 69855.36551475525, - "thread": 139894051313216, + "created": 1676441685.491745, + "msecs": 491.7449951171875, + "relativeCreated": 82495.26023864746, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:03,959" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.959665, - "msecs": 959.665060043335, - "relativeCreated": 69855.90744018555, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:03,959" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.9601395, - "msecs": 960.1395130157471, - "relativeCreated": 69856.38189315796, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:03,960" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954683.9606051, - "msecs": 960.6051445007324, - "relativeCreated": 69856.84752464294, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:03,960" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.0023315, - "msecs": 2.3314952850341797, - "relativeCreated": 69898.57387542725, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:58:04,002" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.0030234, - "msecs": 3.023386001586914, - "relativeCreated": 69899.2657661438, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:04,003" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.0035653, - "msecs": 3.5653114318847656, - "relativeCreated": 69899.8076915741, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:58:04,003" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.0040975, - "msecs": 4.097461700439453, - "relativeCreated": 69900.33984184265, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:04,004" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'true'", + "asctime": "2023-02-15 07:14:45,491" } ], - "time_consumption": 0.25145649909973145 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954684.256168, - "msecs": 256.1678886413574, - "relativeCreated": 70152.41026878357, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:58:04,256", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954684.255917, - "msecs": 255.91707229614258, - "relativeCreated": 70152.15945243835, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:58:04,255" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954684.256038, - "msecs": 256.03795051574707, - "relativeCreated": 70152.28033065796, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:58:04,256" - } - ], - "time_consumption": 0.00012993812561035156 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954684.557608, - "msecs": 557.607889175415, - "relativeCreated": 70453.85026931763, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:58:04,557", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954684.256504, - "msecs": 256.5040588378906, - "relativeCreated": 70152.7464389801, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:04,256" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.2575312, - "msecs": 257.53116607666016, - "relativeCreated": 70153.77354621887, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:04,257" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.2597225, - "msecs": 259.7224712371826, - "relativeCreated": 70155.9648513794, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:58:04,259" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.2603421, - "msecs": 260.3421211242676, - "relativeCreated": 70156.58450126648, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:04,260" - } - ], - "time_consumption": 0.29726576805114746 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954684.5582917, - "msecs": 558.2916736602783, - "relativeCreated": 70454.53405380249, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:58:04,558", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954684.5580084, - "msecs": 558.0084323883057, - "relativeCreated": 70454.25081253052, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:58:04,558" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954684.5581417, - "msecs": 558.1417083740234, - "relativeCreated": 70454.38408851624, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:58:04,558" - } - ], - "time_consumption": 0.0001499652862548828 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954684.5586805, - "msecs": 558.680534362793, - "relativeCreated": 70454.922914505, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:58:04,558", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954684.558471, - "msecs": 558.4709644317627, - "relativeCreated": 70454.71334457397, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:58:04,558" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954684.5585847, - "msecs": 558.5846900939941, - "relativeCreated": 70454.8270702362, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:58:04,558" - } - ], - "time_consumption": 9.584426879882812e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954684.8608637, - "msecs": 860.8636856079102, - "relativeCreated": 70757.10606575012, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:58:04,860", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954684.5589678, - "msecs": 558.9678287506104, - "relativeCreated": 70455.21020889282, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:58:04,558" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.5600724, - "msecs": 560.0724220275879, - "relativeCreated": 70456.3148021698, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:58:04,560" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.5628622, - "msecs": 562.8621578216553, - "relativeCreated": 70459.10453796387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:58:04,562" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954684.5632455, - "msecs": 563.2455348968506, - "relativeCreated": 70459.48791503906, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:04,563" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.5639648, - "msecs": 563.96484375, - "relativeCreated": 70460.20722389221, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:58:04,563" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.5649116, - "msecs": 564.9116039276123, - "relativeCreated": 70461.15398406982, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:04,564" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.6091607, - "msecs": 609.1606616973877, - "relativeCreated": 70505.4030418396, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:58:04,609" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.6098778, - "msecs": 609.8778247833252, - "relativeCreated": 70506.12020492554, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:04,609" - } - ], - "time_consumption": 0.25098586082458496 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954684.8615196, - "msecs": 861.5195751190186, - "relativeCreated": 70757.76195526123, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:58:04,861", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954684.861304, - "msecs": 861.3040447235107, - "relativeCreated": 70757.54642486572, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:58:04,861" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954684.8614275, - "msecs": 861.4275455474854, - "relativeCreated": 70757.6699256897, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:58:04,861" - } - ], - "time_consumption": 9.202957153320312e-05 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954684.8618538, - "msecs": 861.853837966919, - "relativeCreated": 70758.09621810913, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:58:04,861", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954684.8616636, - "msecs": 861.6635799407959, - "relativeCreated": 70757.90596008301, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 50 ()", - "asctime": "2023-02-09 15:58:04,861" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954684.8617482, - "msecs": 861.748218536377, - "relativeCreated": 70757.99059867859, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 50 ()", - "asctime": "2023-02-09 15:58:04,861" - } - ], - "time_consumption": 0.00010561943054199219 - }, - { - "name": "__tLogger__", - "msg": "Changing light device brightness to '%d'", - "args": [ - 65 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 63, - "funcName": "__test_brightness__", - "created": 1675954685.1632338, - "msecs": 163.23375701904297, - "relativeCreated": 71059.47613716125, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device brightness to '65'", - "asctime": "2023-02-09 15:58:05,163", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954684.8621626, - "msecs": 862.1625900268555, - "relativeCreated": 70758.40497016907, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:04,862" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.8631363, - "msecs": 863.1362915039062, - "relativeCreated": 70759.37867164612, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 165.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:04,863" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'65.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.8653631, - "msecs": 865.3631210327148, - "relativeCreated": 70761.60550117493, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'65.0'", - "asctime": "2023-02-09 15:58:04,865" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954684.8659604, - "msecs": 865.9603595733643, - "relativeCreated": 70762.20273971558, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:04,865" - } - ], - "time_consumption": 0.2972733974456787 - }, - { - "name": "__tLogger__", - "msg": "Virtual device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954685.1638463, - "msecs": 163.84625434875488, - "relativeCreated": 71060.08863449097, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:58:05,163", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954685.163595, - "msecs": 163.59496116638184, - "relativeCreated": 71059.8373413086, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device brightness): 65 ()", - "asctime": "2023-02-09 15:58:05,163" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954685.1637511, - "msecs": 163.75112533569336, - "relativeCreated": 71059.9935054779, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device brightness): result = 65 ()", - "asctime": "2023-02-09 15:58:05,163" - } - ], - "time_consumption": 9.512901306152344e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "65", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954685.1641674, - "msecs": 164.1674041748047, - "relativeCreated": 71060.40978431702, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 65 and Type is ).", - "asctime": "2023-02-09 15:58:05,164", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954685.164001, - "msecs": 164.0009880065918, - "relativeCreated": 71060.2433681488, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 65 ()", - "asctime": "2023-02-09 15:58:05,164" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "65", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954685.1640902, - "msecs": 164.09015655517578, - "relativeCreated": 71060.33253669739, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 65 ()", - "asctime": "2023-02-09 15:58:05,164" - } - ], - "time_consumption": 7.724761962890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 69, - "funcName": "__test_brightness__", - "created": 1675954685.4662907, - "msecs": 466.2907123565674, - "relativeCreated": 71362.53309249878, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device brightness to '50'", - "asctime": "2023-02-09 15:58:05,466", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954685.1644263, - "msecs": 164.42632675170898, - "relativeCreated": 71060.66870689392, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:58:05,164" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.165449, - "msecs": 165.4489040374756, - "relativeCreated": 71061.69128417969, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:58:05,165" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.1672628, - "msecs": 167.26279258728027, - "relativeCreated": 71063.50517272949, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:58:05,167" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954685.1676054, - "msecs": 167.60540008544922, - "relativeCreated": 71063.84778022766, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:05,167" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.1682158, - "msecs": 168.21575164794922, - "relativeCreated": 71064.45813179016, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:58:05,168" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.1690388, - "msecs": 169.0387725830078, - "relativeCreated": 71065.28115272522, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:05,169" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.213095, - "msecs": 213.09494972229004, - "relativeCreated": 71109.3373298645, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:58:05,213" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.213764, - "msecs": 213.76395225524902, - "relativeCreated": 71110.00633239746, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:05,213" - } - ], - "time_consumption": 0.25252676010131836 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954685.4668946, - "msecs": 466.89462661743164, - "relativeCreated": 71363.13700675964, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:58:05,466", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954685.4666762, - "msecs": 466.6762351989746, - "relativeCreated": 71362.91861534119, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 50 ()", - "asctime": "2023-02-09 15:58:05,466" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954685.4668002, - "msecs": 466.8002128601074, - "relativeCreated": 71363.04259300232, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 50 ()", - "asctime": "2023-02-09 15:58:05,466" - } - ], - "time_consumption": 9.441375732421875e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "__test_brightness__", - "created": 1675954685.768115, - "msecs": 768.1150436401367, - "relativeCreated": 71664.35742378235, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:58:05,768", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954685.4671152, - "msecs": 467.1151638031006, - "relativeCreated": 71363.35754394531, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:05,467" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.4681451, - "msecs": 468.14513206481934, - "relativeCreated": 71364.38751220703, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:05,468" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.4700398, - "msecs": 470.03984451293945, - "relativeCreated": 71366.28222465515, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:05,470" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.4706228, - "msecs": 470.6227779388428, - "relativeCreated": 71366.86515808105, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:05,470" - } - ], - "time_consumption": 0.29749226570129395 - } - ], - "time_consumption": 1.8148183822631836, - "time_start": "2023-02-09 15:58:03,953", - "time_finished": "2023-02-09 15:58:05,768" - }, - "Color temperature test for device and virtual device: zigbee/gfw/floor/main_light_1": { - "name": "__tLogger__", - "msg": "Color temperature test for device and virtual device: zigbee/gfw/floor/main_light_1", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 81, - "funcName": "test_color_temp", - "created": 1675954685.7687771, - "msecs": 768.7771320343018, - "relativeCreated": 71665.01951217651, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Color temperature test for device and virtual device: zigbee/gfw/floor/main_light_1", - "asctime": "2023-02-09 15:58:05,768", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Power on)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 88, - "funcName": "__test_color_temp__", - "created": 1675954686.0710423, - "msecs": 71.04229927062988, - "relativeCreated": 71967.28467941284, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Power on)", - "asctime": "2023-02-09 15:58:06,071", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954685.7690883, - "msecs": 769.0882682800293, - "relativeCreated": 71665.33064842224, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:05,769" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.7702093, - "msecs": 770.2093124389648, - "relativeCreated": 71666.45169258118, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:05,770" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.7725446, - "msecs": 772.5446224212646, - "relativeCreated": 71668.78700256348, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:05,772" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954685.7728596, - "msecs": 772.8595733642578, - "relativeCreated": 71669.10195350647, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:05,772" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.773509, - "msecs": 773.5090255737305, - "relativeCreated": 71669.75140571594, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:05,773" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954685.7737777, - "msecs": 773.7777233123779, - "relativeCreated": 71670.02010345459, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:05,773" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.7744372, - "msecs": 774.4371891021729, - "relativeCreated": 71670.67956924438, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:05,774" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.7749732, - "msecs": 774.9731540679932, - "relativeCreated": 71671.2155342102, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:05,774" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.775454, - "msecs": 775.454044342041, - "relativeCreated": 71671.69642448425, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:05,775" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954685.7759142, - "msecs": 775.914192199707, - "relativeCreated": 71672.15657234192, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:05,775" - } - ], - "time_consumption": 0.29512810707092285 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954686.0716877, - "msecs": 71.68769836425781, - "relativeCreated": 71967.93007850647, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:06,071", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954686.0714436, - "msecs": 71.44355773925781, - "relativeCreated": 71967.68593788147, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:58:06,071" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954686.071581, - "msecs": 71.58088684082031, - "relativeCreated": 71967.82326698303, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:58:06,071" - } - ], - "time_consumption": 0.0001068115234375 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954686.3731768, - "msecs": 373.17681312561035, - "relativeCreated": 72269.41919326782, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:58:06,373", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954686.0720437, - "msecs": 72.04365730285645, - "relativeCreated": 71968.28603744507, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:06,072" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.0731857, - "msecs": 73.18568229675293, - "relativeCreated": 71969.42806243896, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:06,073" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.0756464, - "msecs": 75.64640045166016, - "relativeCreated": 71971.88878059387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:58:06,075" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.0763147, - "msecs": 76.31468772888184, - "relativeCreated": 71972.5570678711, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:06,076" - } - ], - "time_consumption": 0.2968621253967285 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954686.3738198, - "msecs": 373.81982803344727, - "relativeCreated": 72270.06220817566, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:58:06,373", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954686.3735838, - "msecs": 373.5837936401367, - "relativeCreated": 72269.82617378235, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:58:06,373" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954686.3737166, - "msecs": 373.7165927886963, - "relativeCreated": 72269.95897293091, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:58:06,373" - } - ], - "time_consumption": 0.00010323524475097656 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954686.3742342, - "msecs": 374.2341995239258, - "relativeCreated": 72270.47657966614, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:58:06,374", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954686.3739862, - "msecs": 373.98624420166016, - "relativeCreated": 72270.22862434387, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:58:06,373" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954686.3741453, - "msecs": 374.1452693939209, - "relativeCreated": 72270.38764953613, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:58:06,374" - } - ], - "time_consumption": 8.893013000488281e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954686.6764405, - "msecs": 676.4404773712158, - "relativeCreated": 72572.68285751343, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:58:06,676", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954686.3745275, - "msecs": 374.5274543762207, - "relativeCreated": 72270.76983451843, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:58:06,374" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.3756166, - "msecs": 375.61655044555664, - "relativeCreated": 72271.85893058777, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:58:06,375" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.3777404, - "msecs": 377.74038314819336, - "relativeCreated": 72273.9827632904, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:58:06,377" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954686.3781555, - "msecs": 378.1554698944092, - "relativeCreated": 72274.39785003662, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:06,378" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.3788524, - "msecs": 378.85236740112305, - "relativeCreated": 72275.09474754333, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:58:06,378" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.3797817, - "msecs": 379.78172302246094, - "relativeCreated": 72276.02410316467, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:06,379" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.4255874, - "msecs": 425.58741569519043, - "relativeCreated": 72321.8297958374, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:58:06,425" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.4262307, - "msecs": 426.23066902160645, - "relativeCreated": 72322.47304916382, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:06,426" - } - ], - "time_consumption": 0.2502098083496094 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954686.6771543, - "msecs": 677.1543025970459, - "relativeCreated": 72573.39668273926, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:06,677", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954686.6768801, - "msecs": 676.8801212310791, - "relativeCreated": 72573.12250137329, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:58:06,676" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954686.677014, - "msecs": 677.0141124725342, - "relativeCreated": 72573.25649261475, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:58:06,677" - } - ], - "time_consumption": 0.00014019012451171875 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954686.6775122, - "msecs": 677.5121688842773, - "relativeCreated": 72573.75454902649, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:06,677", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954686.6773286, - "msecs": 677.3285865783691, - "relativeCreated": 72573.57096672058, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 5 ()", - "asctime": "2023-02-09 15:58:06,677" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954686.6774254, - "msecs": 677.4253845214844, - "relativeCreated": 72573.6677646637, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 5 ()", - "asctime": "2023-02-09 15:58:06,677" - } - ], - "time_consumption": 8.678436279296875e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing light device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 94, - "funcName": "__test_color_temp__", - "created": 1675954686.9789767, - "msecs": 978.9767265319824, - "relativeCreated": 72875.2191066742, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing light device color temperature to '5'", - "asctime": "2023-02-09 15:58:06,978", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954686.6778657, - "msecs": 677.865743637085, - "relativeCreated": 72574.1081237793, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:06,677" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.6789527, - "msecs": 678.952693939209, - "relativeCreated": 72575.19507408142, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 413.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:06,678" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'8.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.6814725, - "msecs": 681.4725399017334, - "relativeCreated": 72577.71492004395, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8.0'", - "asctime": "2023-02-09 15:58:06,681" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.6821184, - "msecs": 682.1184158325195, - "relativeCreated": 72578.36079597473, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:06,682" - } - ], - "time_consumption": 0.2968583106994629 - }, - { - "name": "__tLogger__", - "msg": "Virtual device color temperature is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954686.9795804, - "msecs": 979.5804023742676, - "relativeCreated": 72875.82278251648, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device color temperature is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:58:06,979", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device color temperature", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954686.979365, - "msecs": 979.3651103973389, - "relativeCreated": 72875.60749053955, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device color temperature): 8 ()", - "asctime": "2023-02-09 15:58:06,979" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device color temperature", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954686.979487, - "msecs": 979.4869422912598, - "relativeCreated": 72875.72932243347, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device color temperature): result = 8 ()", - "asctime": "2023-02-09 15:58:06,979" - } - ], - "time_consumption": 9.34600830078125e-05 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "8", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954686.979915, - "msecs": 979.9149036407471, - "relativeCreated": 72876.15728378296, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 8 and Type is ).", - "asctime": "2023-02-09 15:58:06,979", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954686.979742, - "msecs": 979.7420501708984, - "relativeCreated": 72875.98443031311, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 8 ()", - "asctime": "2023-02-09 15:58:06,979" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "8", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954686.9798286, - "msecs": 979.8285961151123, - "relativeCreated": 72876.07097625732, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 8 ()", - "asctime": "2023-02-09 15:58:06,979" - } - ], - "time_consumption": 8.630752563476562e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 100, - "funcName": "__test_color_temp__", - "created": 1675954687.282017, - "msecs": 282.0169925689697, - "relativeCreated": 73178.25937271118, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device color temperature to '5'", - "asctime": "2023-02-09 15:58:07,282", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954686.9801693, - "msecs": 980.1692962646484, - "relativeCreated": 72876.41167640686, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:58:06,980" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.9811795, - "msecs": 981.1794757843018, - "relativeCreated": 72877.42185592651, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:58:06,981" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.9830549, - "msecs": 983.0548763275146, - "relativeCreated": 72879.29725646973, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:58:06,983" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954686.9833994, - "msecs": 983.3993911743164, - "relativeCreated": 72879.64177131653, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:06,983" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.9840157, - "msecs": 984.015703201294, - "relativeCreated": 72880.2580833435, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:58:06,984" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954686.9848619, - "msecs": 984.8618507385254, - "relativeCreated": 72881.10423088074, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:06,984" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.029103, - "msecs": 29.10304069519043, - "relativeCreated": 72925.3454208374, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:58:07,029" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.029751, - "msecs": 29.751062393188477, - "relativeCreated": 72925.9934425354, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:07,029" - } - ], - "time_consumption": 0.25226593017578125 - }, - { - "name": "__tLogger__", - "msg": "Light device brightness is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954687.2825918, - "msecs": 282.5918197631836, - "relativeCreated": 73178.8341999054, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Light device brightness is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:07,282", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Light device brightness", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954687.2823822, - "msecs": 282.3822498321533, - "relativeCreated": 73178.62462997437, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Light device brightness): 5 ()", - "asctime": "2023-02-09 15:58:07,282" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Light device brightness", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954687.2824986, - "msecs": 282.4985980987549, - "relativeCreated": 73178.74097824097, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Light device brightness): result = 5 ()", - "asctime": "2023-02-09 15:58:07,282" - } - ], - "time_consumption": 9.322166442871094e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting precondition (Power off)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 105, - "funcName": "__test_color_temp__", - "created": 1675954687.5839524, - "msecs": 583.9524269104004, - "relativeCreated": 73480.19480705261, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting precondition (Power off)", - "asctime": "2023-02-09 15:58:07,583", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954687.2828102, - "msecs": 282.8102111816406, - "relativeCreated": 73179.05259132385, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:07,282" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.2838604, - "msecs": 283.860445022583, - "relativeCreated": 73180.1028251648, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:07,283" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.285761, - "msecs": 285.76111793518066, - "relativeCreated": 73182.00349807739, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:07,285" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.2863576, - "msecs": 286.3576412200928, - "relativeCreated": 73182.6000213623, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:07,286" - } - ], - "time_consumption": 0.2975947856903076 - } - ], - "time_consumption": 1.8151752948760986, - "time_start": "2023-02-09 15:58:05,768", - "time_finished": "2023-02-09 15:58:07,583" - }, - "Power On/ Off test for device and virtual device: shellies/gfw/floor/main_light": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: shellies/gfw/floor/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954687.5846174, - "msecs": 584.6173763275146, - "relativeCreated": 73480.85975646973, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: shellies/gfw/floor/main_light", - "asctime": "2023-02-09 15:58:07,584", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954687.5850906, - "msecs": 585.0906372070312, - "relativeCreated": 73481.33301734924, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:07,585", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954687.5848567, - "msecs": 584.8567485809326, - "relativeCreated": 73481.09912872314, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:07,584" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954687.584974, - "msecs": 584.9740505218506, - "relativeCreated": 73481.21643066406, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:07,584" - } - ], - "time_consumption": 0.00011658668518066406 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954687.8870337, - "msecs": 887.0337009429932, - "relativeCreated": 73783.2760810852, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:07,887", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954687.5853133, - "msecs": 585.3133201599121, - "relativeCreated": 73481.55570030212, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:07,585" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.586417, - "msecs": 586.4169597625732, - "relativeCreated": 73482.65933990479, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:07,586" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.5888093, - "msecs": 588.8092517852783, - "relativeCreated": 73485.05163192749, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:07,588" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954687.589178, - "msecs": 589.1780853271484, - "relativeCreated": 73485.42046546936, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:07,589" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.5897954, - "msecs": 589.7953510284424, - "relativeCreated": 73486.03773117065, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:07,589" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954687.5900712, - "msecs": 590.0712013244629, - "relativeCreated": 73486.31358146667, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:07,590" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.5907304, - "msecs": 590.7304286956787, - "relativeCreated": 73486.97280883789, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:07,590" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.5912545, - "msecs": 591.254472732544, - "relativeCreated": 73487.49685287476, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:07,591" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.5917304, - "msecs": 591.7303562164307, - "relativeCreated": 73487.97273635864, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:07,591" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.5921924, - "msecs": 592.1924114227295, - "relativeCreated": 73488.43479156494, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:07,592" - } - ], - "time_consumption": 0.29484128952026367 + "time_consumption": 0.2975316047668457 }, { "name": "__tLogger__", @@ -97576,15 +93231,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954687.8876193, - "msecs": 887.6192569732666, - "relativeCreated": 73783.86163711548, - "thread": 139894075555840, + "created": 1676441685.7900474, + "msecs": 790.0474071502686, + "relativeCreated": 82793.56265068054, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:07,887", + "asctime": "2023-02-15 07:14:45,790", "moduleLogger": [ { "name": "__unittest__", @@ -97604,15 +93259,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954687.887406, - "msecs": 887.4061107635498, - "relativeCreated": 73783.64849090576, - "thread": 139894075555840, + "created": 1676441685.7897298, + "msecs": 789.7298336029053, + "relativeCreated": 82793.24507713318, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:07,887" + "asctime": "2023-02-15 07:14:45,789" }, { "name": "__unittest__", @@ -97633,880 +93288,15 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954687.887524, - "msecs": 887.523889541626, - "relativeCreated": 73783.76626968384, - "thread": 139894075555840, + "created": 1676441685.7899213, + "msecs": 789.9212837219238, + "relativeCreated": 82793.4365272522, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:07,887" - } - ], - "time_consumption": 9.5367431640625e-05 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954687.8879676, - "msecs": 887.967586517334, - "relativeCreated": 73784.20996665955, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:07,887", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954687.8877978, - "msecs": 887.7978324890137, - "relativeCreated": 73784.04021263123, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:07,887" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954687.8878896, - "msecs": 887.8896236419678, - "relativeCreated": 73784.13200378418, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:07,887" - } - ], - "time_consumption": 7.796287536621094e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954688.1892672, - "msecs": 189.26715850830078, - "relativeCreated": 74085.50953865051, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:08,189", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954687.888206, - "msecs": 888.2060050964355, - "relativeCreated": 73784.44838523865, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/state and payload false", - "asctime": "2023-02-09 15:58:07,888" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.889213, - "msecs": 889.2130851745605, - "relativeCreated": 73785.45546531677, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:07,889" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.8907142, - "msecs": 890.714168548584, - "relativeCreated": 73786.9565486908, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:07,890" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954687.8910213, - "msecs": 891.0212516784668, - "relativeCreated": 73787.26363182068, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:07,891" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.8920217, - "msecs": 892.021656036377, - "relativeCreated": 73788.26403617859, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:07,892" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.9357839, - "msecs": 935.783863067627, - "relativeCreated": 73832.02624320984, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:07,935" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954687.936426, - "msecs": 936.4259243011475, - "relativeCreated": 73832.66830444336, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:07,936" - } - ], - "time_consumption": 0.2528412342071533 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954688.1899157, - "msecs": 189.91565704345703, - "relativeCreated": 74086.15803718567, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:08,189", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954688.1896765, - "msecs": 189.67652320861816, - "relativeCreated": 74085.91890335083, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:08,189" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954688.1898086, - "msecs": 189.80860710144043, - "relativeCreated": 74086.05098724365, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:08,189" - } - ], - "time_consumption": 0.00010704994201660156 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954688.190269, - "msecs": 190.26899337768555, - "relativeCreated": 74086.5113735199, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:08,190", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954688.1900854, - "msecs": 190.08541107177734, - "relativeCreated": 74086.32779121399, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:08,190" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954688.190182, - "msecs": 190.18197059631348, - "relativeCreated": 74086.42435073853, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:08,190" - } - ], - "time_consumption": 8.702278137207031e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954688.492512, - "msecs": 492.5119876861572, - "relativeCreated": 74388.75436782837, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:08,492", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954688.1905394, - "msecs": 190.53936004638672, - "relativeCreated": 74086.7817401886, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:08,190" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.191696, - "msecs": 191.6959285736084, - "relativeCreated": 74087.93830871582, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:08,191" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.194369, - "msecs": 194.36907768249512, - "relativeCreated": 74090.6114578247, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:08,194" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954688.1946895, - "msecs": 194.68951225280762, - "relativeCreated": 74090.93189239502, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:08,194" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.195301, - "msecs": 195.30105590820312, - "relativeCreated": 74091.54343605042, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:08,195" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954688.1955848, - "msecs": 195.58477401733398, - "relativeCreated": 74091.82715415955, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:08,195" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.1962485, - "msecs": 196.24853134155273, - "relativeCreated": 74092.49091148376, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:08,196" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.1967778, - "msecs": 196.7778205871582, - "relativeCreated": 74093.02020072937, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:08,196" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.1972919, - "msecs": 197.29185104370117, - "relativeCreated": 74093.53423118591, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:08,197" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.1977615, - "msecs": 197.76153564453125, - "relativeCreated": 74094.00391578674, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:08,197" - } - ], - "time_consumption": 0.294750452041626 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954688.493155, - "msecs": 493.15500259399414, - "relativeCreated": 74389.3973827362, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:08,493", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954688.4929082, - "msecs": 492.908239364624, - "relativeCreated": 74389.15061950684, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:08,492" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954688.4930289, - "msecs": 493.0288791656494, - "relativeCreated": 74389.27125930786, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:08,493" + "asctime": "2023-02-15 07:14:45,789" } ], "time_consumption": 0.00012612342834472656 @@ -98528,15 +93318,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954688.4934874, - "msecs": 493.4873580932617, - "relativeCreated": 74389.72973823547, - "thread": 139894075555840, + "created": 1676441685.7906146, + "msecs": 790.6146049499512, + "relativeCreated": 82794.12984848022, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:08,493", + "asctime": "2023-02-15 07:14:45,790", "moduleLogger": [ { "name": "__unittest__", @@ -98556,15 +93346,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954688.493312, - "msecs": 493.31188201904297, - "relativeCreated": 74389.55426216125, - "thread": 139894075555840, + "created": 1676441685.7902439, + "msecs": 790.2438640594482, + "relativeCreated": 82793.75910758972, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:08,493" + "asctime": "2023-02-15 07:14:45,790" }, { "name": "__unittest__", @@ -98585,18 +93375,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954688.493398, - "msecs": 493.39795112609863, - "relativeCreated": 74389.64033126831, - "thread": 139894075555840, + "created": 1676441685.7903564, + "msecs": 790.3563976287842, + "relativeCreated": 82793.87164115906, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:08,493" + "asctime": "2023-02-15 07:14:45,790" } ], - "time_consumption": 8.940696716308594e-05 + "time_consumption": 0.0002582073211669922 }, { "name": "__tLogger__", @@ -98614,21 +93404,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954688.7946498, - "msecs": 794.6498394012451, - "relativeCreated": 74690.89221954346, - "thread": 139894075555840, + "created": 1676441686.0920339, + "msecs": 92.03386306762695, + "relativeCreated": 83095.5491065979, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:08,794", + "asctime": "2023-02-15 07:14:46,092", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/floor/main_light/state", + "videv/gfw/marion/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -98641,48 +93431,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954688.493733, - "msecs": 493.7329292297363, - "relativeCreated": 74389.97530937195, - "thread": 139894075555840, + "created": 1676441685.7910092, + "msecs": 791.0091876983643, + "relativeCreated": 82794.52443122864, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/state and payload false", - "asctime": "2023-02-09 15:58:08,493" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:45,791" }, { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0.command", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.4947228, - "msecs": 494.722843170166, - "relativeCreated": 74390.96522331238, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:08,494" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0/command", + "shellies/gfw/marion/main_light/relay/0/command", "b'off'" ], "levelname": "DEBUG", @@ -98695,21 +93458,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954688.4961221, - "msecs": 496.1221218109131, - "relativeCreated": 74392.36450195312, - "thread": 139894051313216, + "created": 1676441685.79433, + "msecs": 794.3298816680908, + "relativeCreated": 82797.84512519836, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:08,496" + "process": 509276, + "message": "Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'off'", + "asctime": "2023-02-15 07:14:45,794" }, { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", "msg": "Sending message with topic %s and payload %s", "args": [ - "shellies/gfw/floor/main_light/relay/0", + "shellies/gfw/marion/main_light/relay/0", "off" ], "levelname": "DEBUG", @@ -98722,21 +93485,21 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954688.4964108, - "msecs": 496.4108467102051, - "relativeCreated": 74392.65322685242, - "thread": 139894051313216, + "created": 1676441685.7947981, + "msecs": 794.7981357574463, + "relativeCreated": 82798.31337928772, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:08,496" + "process": 509276, + "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off", + "asctime": "2023-02-15 07:14:45,794" }, { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", + "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", "msg": "Received message with topic %s and payload %s", "args": [ - "shellies/gfw/floor/main_light/relay/0", + "shellies/gfw/marion/main_light/relay/0", "b'off'" ], "levelname": "DEBUG", @@ -98749,21 +93512,21 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954688.4974246, - "msecs": 497.4246025085449, - "relativeCreated": 74393.66698265076, - "thread": 139894051313216, + "created": 1676441685.796121, + "msecs": 796.1208820343018, + "relativeCreated": 82799.63612556458, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:08,497" + "process": 509276, + "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off'", + "asctime": "2023-02-15 07:14:45,796" }, { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", "msg": "Received message with topic %s and payload %s", "args": [ - "videv/gfw/floor/main_light/state", + "videv/gfw/marion/main_light/state", "b'false'" ], "levelname": "DEBUG", @@ -98776,45 +93539,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954688.5415804, - "msecs": 541.5804386138916, - "relativeCreated": 74437.8228187561, - "thread": 139894051313216, + "created": 1676441685.8388321, + "msecs": 838.8321399688721, + "relativeCreated": 82842.34738349915, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:08,541" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.5423043, - "msecs": 542.304277420044, - "relativeCreated": 74438.54665756226, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:08,542" + "process": 509276, + "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", + "asctime": "2023-02-15 07:14:45,838" } ], - "time_consumption": 0.25234556198120117 + "time_consumption": 0.2532017230987549 }, { "name": "__tLogger__", @@ -98833,15 +93569,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954688.795227, - "msecs": 795.22705078125, - "relativeCreated": 74691.46943092346, - "thread": 139894075555840, + "created": 1676441686.092666, + "msecs": 92.6659107208252, + "relativeCreated": 83096.1811542511, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:08,795", + "asctime": "2023-02-15 07:14:46,092", "moduleLogger": [ { "name": "__unittest__", @@ -98861,15 +93597,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954688.7950172, - "msecs": 795.0172424316406, - "relativeCreated": 74691.25962257385, - "thread": 139894075555840, + "created": 1676441686.0924308, + "msecs": 92.43083000183105, + "relativeCreated": 83095.9460735321, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:08,795" + "asctime": "2023-02-15 07:14:46,092" }, { "name": "__unittest__", @@ -98890,653 +93626,25 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954688.7951357, - "msecs": 795.1357364654541, - "relativeCreated": 74691.37811660767, - "thread": 139894075555840, + "created": 1676441686.0925603, + "msecs": 92.5602912902832, + "relativeCreated": 83096.07553482056, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:08,795" + "asctime": "2023-02-15 07:14:46,092" } ], - "time_consumption": 9.131431579589844e-05 - } - ], - "time_consumption": 1.2106096744537354, - "time_start": "2023-02-09 15:58:07,584", - "time_finished": "2023-02-09 15:58:08,795" - }, - "Brightness synchronisation test: videv/gfw/floor/main_light": { - "name": "__tLogger__", - "msg": "Brightness synchronisation test: videv/gfw/floor/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "test_brightness_sync", - "created": 1675954688.7956862, - "msecs": 795.6862449645996, - "relativeCreated": 74691.92862510681, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Brightness synchronisation test: videv/gfw/floor/main_light", - "asctime": "2023-02-09 15:58:08,795", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions for master device '%s' (Power on)", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 48, - "funcName": "__test_brightness_sync__", - "created": 1675954689.0978687, - "msecs": 97.86868095397949, - "relativeCreated": 74994.11106109619, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions for master device 'True' (Power on)", - "asctime": "2023-02-09 15:58:09,097", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954688.7959383, - "msecs": 795.93825340271, - "relativeCreated": 74692.18063354492, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:08,795" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.796971, - "msecs": 796.9710826873779, - "relativeCreated": 74693.21346282959, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:08,796" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.7993293, - "msecs": 799.3292808532715, - "relativeCreated": 74695.57166099548, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:08,799" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954688.8000767, - "msecs": 800.0767230987549, - "relativeCreated": 74696.31910324097, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:08,800" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.8006837, - "msecs": 800.6837368011475, - "relativeCreated": 74696.92611694336, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:08,800" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954688.8009462, - "msecs": 800.9462356567383, - "relativeCreated": 74697.18861579895, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:08,800" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.80163, - "msecs": 801.6300201416016, - "relativeCreated": 74697.87240028381, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:08,801" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.8021572, - "msecs": 802.1571636199951, - "relativeCreated": 74698.3995437622, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:08,802" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.8026283, - "msecs": 802.6282787322998, - "relativeCreated": 74698.87065887451, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:08,802" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954688.8031158, - "msecs": 803.1158447265625, - "relativeCreated": 74699.35822486877, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:08,803" - } - ], - "time_consumption": 0.294752836227417 + "time_consumption": 0.00010561943054199219 }, { "name": "__tLogger__", - "msg": "Changing master device brightness to '%d'", + "msg": "Virtual device state is correct (Content %s and Type is %s).", "args": [ - 35 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 56, - "funcName": "__test_brightness_sync__", - "created": 1675954689.399358, - "msecs": 399.35803413391113, - "relativeCreated": 75295.60041427612, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device brightness to '35'", - "asctime": "2023-02-09 15:58:09,399", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "35" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954689.098365, - "msecs": 98.36506843566895, - "relativeCreated": 74994.60744857788, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness and payload 35", - "asctime": "2023-02-09 15:58:09,098" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'35'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.0993993, - "msecs": 99.39932823181152, - "relativeCreated": 74995.64170837402, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'35'", - "asctime": "2023-02-09 15:58:09,099" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/set", - "b'{\"brightness\": 90.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.101285, - "msecs": 101.28498077392578, - "relativeCreated": 74997.52736091614, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"brightness\": 90.0}'", - "asctime": "2023-02-09 15:58:09,101" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954689.1016283, - "msecs": 101.62830352783203, - "relativeCreated": 74997.87068367004, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:09,101" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/set", - "b'{\"brightness\": 90.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.1022413, - "msecs": 102.24127769470215, - "relativeCreated": 74998.48365783691, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"brightness\": 90.0}'", - "asctime": "2023-02-09 15:58:09,102" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954689.1025581, - "msecs": 102.55813598632812, - "relativeCreated": 74998.80051612854, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:09,102" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.1034255, - "msecs": 103.42550277709961, - "relativeCreated": 74999.66788291931, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:09,103" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.1039646, - "msecs": 103.96456718444824, - "relativeCreated": 75000.20694732666, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 90.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:09,103" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'35.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.14601, - "msecs": 146.0099220275879, - "relativeCreated": 75042.2523021698, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'35.0'", - "asctime": "2023-02-09 15:58:09,146" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.1466584, - "msecs": 146.65842056274414, - "relativeCreated": 75042.90080070496, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:09,146" - } - ], - "time_consumption": 0.252699613571167 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_1) brightness is correct (Content %s and Type is %s).", - "args": [ - "35", - "" + "False", + "" ], "levelname": "INFO", "levelno": 20, @@ -99548,23 +93656,23 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954689.400016, - "msecs": 400.01606941223145, - "relativeCreated": 75296.25844955444, - "thread": 139894075555840, + "created": 1676441686.0935872, + "msecs": 93.58716011047363, + "relativeCreated": 83097.10240364075, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_1) brightness is correct (Content 35 and Type is ).", - "asctime": "2023-02-09 15:58:09,400", + "process": 509276, + "message": "Virtual device state is correct (Content False and Type is ).", + "asctime": "2023-02-15 07:14:46,093", "moduleLogger": [ { "name": "__unittest__", "msg": "Result (%s): %s (%s)", "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) brightness", - "35", - "" + "Virtual device state", + "False", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -99576,24 +93684,24 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954689.3997736, - "msecs": 399.77359771728516, - "relativeCreated": 75296.0159778595, - "thread": 139894075555840, + "created": 1676441686.0933752, + "msecs": 93.37520599365234, + "relativeCreated": 83096.89044952393, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) brightness): 35 ()", - "asctime": "2023-02-09 15:58:09,399" + "process": 509276, + "message": "Result (Virtual device state): False ()", + "asctime": "2023-02-15 07:14:46,093" }, { "name": "__unittest__", "msg": "Expectation (%s): result %s %s (%s)", "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) brightness", + "Virtual device state", "=", - "35", - "" + "False", + "" ], "levelname": "DEBUG", "levelno": 10, @@ -99605,9516 +93713,19 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954689.399909, - "msecs": 399.90901947021484, - "relativeCreated": 75296.15139961243, - "thread": 139894075555840, + "created": 1676441686.0934925, + "msecs": 93.49250793457031, + "relativeCreated": 83097.00775146484, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) brightness): result = 35 ()", - "asctime": "2023-02-09 15:58:09,399" - } - ], - "time_consumption": 0.00010704994201660156 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_2) brightness is correct (Content %s and Type is %s).", - "args": [ - "35", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954689.4003983, - "msecs": 400.39825439453125, - "relativeCreated": 75296.64063453674, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_2) brightness is correct (Content 35 and Type is ).", - "asctime": "2023-02-09 15:58:09,400", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) brightness", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954689.4001858, - "msecs": 400.18582344055176, - "relativeCreated": 75296.42820358276, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) brightness): 35 ()", - "asctime": "2023-02-09 15:58:09,400" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) brightness", - "=", - "35", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954689.4002821, - "msecs": 400.2821445465088, - "relativeCreated": 75296.52452468872, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) brightness): result = 35 ()", - "asctime": "2023-02-09 15:58:09,400" - } - ], - "time_consumption": 0.00011610984802246094 - }, - { - "name": "__tLogger__", - "msg": "Changing master device brightness to '%d'", - "args": [ - 50 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 56, - "funcName": "__test_brightness_sync__", - "created": 1675954689.7020524, - "msecs": 702.0523548126221, - "relativeCreated": 75598.29473495483, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device brightness to '50'", - "asctime": "2023-02-09 15:58:09,702", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "50" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954689.4006872, - "msecs": 400.68721771240234, - "relativeCreated": 75296.92959785461, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness and payload 50", - "asctime": "2023-02-09 15:58:09,400" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.401806, - "msecs": 401.806116104126, - "relativeCreated": 75298.04849624634, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50'", - "asctime": "2023-02-09 15:58:09,401" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.4038973, - "msecs": 403.8972854614258, - "relativeCreated": 75300.13966560364, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:58:09,403" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954689.40429, - "msecs": 404.28996086120605, - "relativeCreated": 75300.53234100342, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:09,404" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/set", - "b'{\"brightness\": 128.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.405, - "msecs": 404.9999713897705, - "relativeCreated": 75301.24235153198, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"brightness\": 128.0}'", - "asctime": "2023-02-09 15:58:09,404" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954689.4053679, - "msecs": 405.3678512573242, - "relativeCreated": 75301.61023139954, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:09,405" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.4063396, - "msecs": 406.3396453857422, - "relativeCreated": 75302.58202552795, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:09,406" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.406951, - "msecs": 406.9509506225586, - "relativeCreated": 75303.19333076477, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:09,406" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'50.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.4499576, - "msecs": 449.95760917663574, - "relativeCreated": 75346.19998931885, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50.0'", - "asctime": "2023-02-09 15:58:09,449" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.45061, - "msecs": 450.6099224090576, - "relativeCreated": 75346.85230255127, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:09,450" - } - ], - "time_consumption": 0.25144243240356445 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_1) brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954689.702644, - "msecs": 702.6441097259521, - "relativeCreated": 75598.88648986816, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_1) brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:58:09,702", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954689.7024312, - "msecs": 702.4312019348145, - "relativeCreated": 75598.67358207703, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) brightness): 50 ()", - "asctime": "2023-02-09 15:58:09,702" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954689.7025495, - "msecs": 702.5494575500488, - "relativeCreated": 75598.79183769226, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) brightness): result = 50 ()", - "asctime": "2023-02-09 15:58:09,702" + "process": 509276, + "message": "Expectation (Virtual device state): result = False ()", + "asctime": "2023-02-15 07:14:46,093" } ], "time_consumption": 9.465217590332031e-05 }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_2) brightness is correct (Content %s and Type is %s).", - "args": [ - "50", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954689.7029624, - "msecs": 702.9623985290527, - "relativeCreated": 75599.20477867126, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_2) brightness is correct (Content 50 and Type is ).", - "asctime": "2023-02-09 15:58:09,702", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) brightness", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954689.7027998, - "msecs": 702.7997970581055, - "relativeCreated": 75599.04217720032, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) brightness): 50 ()", - "asctime": "2023-02-09 15:58:09,702" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) brightness", - "=", - "50", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954689.7028856, - "msecs": 702.885627746582, - "relativeCreated": 75599.1280078888, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) brightness): result = 50 ()", - "asctime": "2023-02-09 15:58:09,702" - } - ], - "time_consumption": 7.677078247070312e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting preconditions for master device '%s' (Power off)", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 64, - "funcName": "__test_brightness_sync__", - "created": 1675954690.0041685, - "msecs": 4.168510437011719, - "relativeCreated": 75900.41089057922, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting preconditions for master device 'False' (Power off)", - "asctime": "2023-02-09 15:58:10,004", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954689.7031722, - "msecs": 703.1722068786621, - "relativeCreated": 75599.41458702087, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:09,703" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.7041948, - "msecs": 704.1947841644287, - "relativeCreated": 75600.43716430664, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:09,704" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.7061388, - "msecs": 706.1388492584229, - "relativeCreated": 75602.38122940063, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:09,706" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954689.706726, - "msecs": 706.72607421875, - "relativeCreated": 75602.96845436096, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:09,706" - } - ], - "time_consumption": 0.2974424362182617 - } - ], - "time_consumption": 1.208482265472412, - "time_start": "2023-02-09 15:58:08,795", - "time_finished": "2023-02-09 15:58:10,004" - }, - "Color temperature synchronisation test: videv/gfw/floor/main_light": { - "name": "__tLogger__", - "msg": "Color temperature synchronisation test: videv/gfw/floor/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 67, - "funcName": "test_color_temp_sync", - "created": 1675954690.0047913, - "msecs": 4.791259765625, - "relativeCreated": 75901.03363990784, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Color temperature synchronisation test: videv/gfw/floor/main_light", - "asctime": "2023-02-09 15:58:10,004", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions for master device '%s' (Power on)", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 73, - "funcName": "__test_color_temp_sync__", - "created": 1675954690.307083, - "msecs": 307.0828914642334, - "relativeCreated": 76203.32527160645, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions for master device 'True' (Power on)", - "asctime": "2023-02-09 15:58:10,307", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.0051086, - "msecs": 5.10859489440918, - "relativeCreated": 75901.35097503662, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:10,005" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.00618, - "msecs": 6.180047988891602, - "relativeCreated": 75902.4224281311, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:10,006" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.0085115, - "msecs": 8.511543273925781, - "relativeCreated": 75904.75392341614, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:10,008" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.008852, - "msecs": 8.852005004882812, - "relativeCreated": 75905.0943851471, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:10,008" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.0095184, - "msecs": 9.51838493347168, - "relativeCreated": 75905.76076507568, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:10,009" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.0097923, - "msecs": 9.792327880859375, - "relativeCreated": 75906.03470802307, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:10,009" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.0104702, - "msecs": 10.470151901245117, - "relativeCreated": 75906.71253204346, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:10,010" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.0109947, - "msecs": 10.994672775268555, - "relativeCreated": 75907.23705291748, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:10,010" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.0114703, - "msecs": 11.470317840576172, - "relativeCreated": 75907.71269798279, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:10,011" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.0119374, - "msecs": 11.937379837036133, - "relativeCreated": 75908.17975997925, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:10,011" - } - ], - "time_consumption": 0.29514551162719727 - }, - { - "name": "__tLogger__", - "msg": "Changing master device color temperature to '%d'", - "args": [ - 2 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 81, - "funcName": "__test_color_temp_sync__", - "created": 1675954690.608576, - "msecs": 608.5760593414307, - "relativeCreated": 76504.81843948364, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device color temperature to '2'", - "asctime": "2023-02-09 15:58:10,608", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.3075824, - "msecs": 307.5823783874512, - "relativeCreated": 76203.82475852966, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp and payload 2", - "asctime": "2023-02-09 15:58:10,307" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.3086255, - "msecs": 308.6254596710205, - "relativeCreated": 76204.86783981323, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'2'", - "asctime": "2023-02-09 15:58:10,308" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/set", - "b'{\"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.3105776, - "msecs": 310.5776309967041, - "relativeCreated": 76206.82001113892, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 291.0}'", - "asctime": "2023-02-09 15:58:10,310" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.3109238, - "msecs": 310.92381477355957, - "relativeCreated": 76207.16619491577, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:10,310" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/set", - "b'{\"color_temp\": 291.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.3115463, - "msecs": 311.54632568359375, - "relativeCreated": 76207.7887058258, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 291.0}'", - "asctime": "2023-02-09 15:58:10,311" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.3118396, - "msecs": 311.8395805358887, - "relativeCreated": 76208.0819606781, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:10,311" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.3127112, - "msecs": 312.711238861084, - "relativeCreated": 76208.9536190033, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:10,312" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.3132827, - "msecs": 313.28272819519043, - "relativeCreated": 76209.5251083374, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 291.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:10,313" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'2.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.3580256, - "msecs": 358.02555084228516, - "relativeCreated": 76254.2679309845, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'2.0'", - "asctime": "2023-02-09 15:58:10,358" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.3587005, - "msecs": 358.7005138397217, - "relativeCreated": 76254.94289398193, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:10,358" - } - ], - "time_consumption": 0.24987554550170898 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_1) color temperature is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954690.609268, - "msecs": 609.2679500579834, - "relativeCreated": 76505.5103302002, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_1) color temperature is correct (Content 2 and Type is ).", - "asctime": "2023-02-09 15:58:10,609", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) color temperature", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954690.60899, - "msecs": 608.989953994751, - "relativeCreated": 76505.23233413696, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) color temperature): 2 ()", - "asctime": "2023-02-09 15:58:10,608" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) color temperature", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954690.6091588, - "msecs": 609.1587543487549, - "relativeCreated": 76505.40113449097, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) color temperature): result = 2 ()", - "asctime": "2023-02-09 15:58:10,609" - } - ], - "time_consumption": 0.00010919570922851562 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_2) color temperature is correct (Content %s and Type is %s).", - "args": [ - "2", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954690.6096277, - "msecs": 609.6277236938477, - "relativeCreated": 76505.87010383606, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_2) color temperature is correct (Content 2 and Type is ).", - "asctime": "2023-02-09 15:58:10,609", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) color temperature", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954690.609444, - "msecs": 609.4439029693604, - "relativeCreated": 76505.68628311157, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) color temperature): 2 ()", - "asctime": "2023-02-09 15:58:10,609" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) color temperature", - "=", - "2", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954690.6095417, - "msecs": 609.541654586792, - "relativeCreated": 76505.784034729, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) color temperature): result = 2 ()", - "asctime": "2023-02-09 15:58:10,609" - } - ], - "time_consumption": 8.606910705566406e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing master device color temperature to '%d'", - "args": [ - 5 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 81, - "funcName": "__test_color_temp_sync__", - "created": 1675954690.911884, - "msecs": 911.884069442749, - "relativeCreated": 76808.12644958496, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device color temperature to '5'", - "asctime": "2023-02-09 15:58:10,911", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "5" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.6099505, - "msecs": 609.9505424499512, - "relativeCreated": 76506.19292259216, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp and payload 5", - "asctime": "2023-02-09 15:58:10,609" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.6110382, - "msecs": 611.0382080078125, - "relativeCreated": 76507.28058815002, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5'", - "asctime": "2023-02-09 15:58:10,611" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.6131775, - "msecs": 613.1775379180908, - "relativeCreated": 76509.4199180603, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:58:10,613" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.6136062, - "msecs": 613.6062145233154, - "relativeCreated": 76509.84859466553, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:10,613" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/set", - "b'{\"color_temp\": 352.0}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.614302, - "msecs": 614.3019199371338, - "relativeCreated": 76510.54430007935, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{\"color_temp\": 352.0}'", - "asctime": "2023-02-09 15:58:10,614" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.6146357, - "msecs": 614.635705947876, - "relativeCreated": 76510.87808609009, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:10,614" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.6155179, - "msecs": 615.5178546905518, - "relativeCreated": 76511.76023483276, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:10,615" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.6160536, - "msecs": 616.053581237793, - "relativeCreated": 76512.29596138, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:10,616" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'5.0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.6585524, - "msecs": 658.5524082183838, - "relativeCreated": 76554.7947883606, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5.0'", - "asctime": "2023-02-09 15:58:10,658" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.6591988, - "msecs": 659.1987609863281, - "relativeCreated": 76555.44114112854, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:10,659" - } - ], - "time_consumption": 0.2526853084564209 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_1) color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954690.9126165, - "msecs": 912.616491317749, - "relativeCreated": 76808.85887145996, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_1) color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:10,912", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954690.9123597, - "msecs": 912.3597145080566, - "relativeCreated": 76808.60209465027, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) color temperature): 5 ()", - "asctime": "2023-02-09 15:58:10,912" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954690.9125102, - "msecs": 912.5101566314697, - "relativeCreated": 76808.75253677368, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) color temperature): result = 5 ()", - "asctime": "2023-02-09 15:58:10,912" - } - ], - "time_consumption": 0.00010633468627929688 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_2) color temperature is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954690.9129748, - "msecs": 912.9748344421387, - "relativeCreated": 76809.21721458435, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_2) color temperature is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:10,912", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) color temperature", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954690.9127922, - "msecs": 912.7922058105469, - "relativeCreated": 76809.03458595276, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) color temperature): 5 ()", - "asctime": "2023-02-09 15:58:10,912" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) color temperature", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954690.9128883, - "msecs": 912.8882884979248, - "relativeCreated": 76809.13066864014, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) color temperature): result = 5 ()", - "asctime": "2023-02-09 15:58:10,912" - } - ], - "time_consumption": 8.654594421386719e-05 - }, - { - "name": "__tLogger__", - "msg": "Resetting preconditions for master device '%s' (Power off)", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 89, - "funcName": "__test_color_temp_sync__", - "created": 1675954691.214262, - "msecs": 214.2620086669922, - "relativeCreated": 77110.5043888092, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Resetting preconditions for master device 'False' (Power off)", - "asctime": "2023-02-09 15:58:11,214", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954690.913316, - "msecs": 913.316011428833, - "relativeCreated": 76809.55839157104, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:10,913" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.9145124, - "msecs": 914.5123958587646, - "relativeCreated": 76810.75477600098, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:10,914" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.9166138, - "msecs": 916.6138172149658, - "relativeCreated": 76812.85619735718, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:10,916" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954690.9173162, - "msecs": 917.316198348999, - "relativeCreated": 76813.55857849121, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:10,917" - } - ], - "time_consumption": 0.29694581031799316 - } - ], - "time_consumption": 1.2094707489013672, - "time_start": "2023-02-09 15:58:10,004", - "time_finished": "2023-02-09 15:58:11,214" - }, - "Power On/ Off synchronisation test: shellies/gfw/floor/main_light": { - "name": "__tLogger__", - "msg": "Power On/ Off synchronisation test: shellies/gfw/floor/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 24, - "funcName": "test_power_on_off_sync", - "created": 1675954691.2148986, - "msecs": 214.89858627319336, - "relativeCreated": 77111.1409664154, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off synchronisation test: shellies/gfw/floor/main_light", - "asctime": "2023-02-09 15:58:11,214", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions for master device '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 30, - "funcName": "__test_power_on_off_sync__", - "created": 1675954691.5155818, - "msecs": 515.5818462371826, - "relativeCreated": 77411.8242263794, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions for master device 'False'", - "asctime": "2023-02-09 15:58:11,515", - "moduleLogger": [], - "time_consumption": 0.0 - }, - { - "name": "__tLogger__", - "msg": "Changing master device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off_sync__", - "created": 1675954691.8171422, - "msecs": 817.1422481536865, - "relativeCreated": 77713.3846282959, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device state to 'True'", - "asctime": "2023-02-09 15:58:11,817", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954691.5160322, - "msecs": 516.0322189331055, - "relativeCreated": 77412.27459907532, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:11,516" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.517296, - "msecs": 517.2960758209229, - "relativeCreated": 77413.53845596313, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:11,517" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.5199866, - "msecs": 519.986629486084, - "relativeCreated": 77416.2290096283, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:11,519" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954691.5203679, - "msecs": 520.3678607940674, - "relativeCreated": 77416.61024093628, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_1 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:11,520" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.5211153, - "msecs": 521.1153030395508, - "relativeCreated": 77417.35768318176, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2023-02-09 15:58:11,521" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954691.5214453, - "msecs": 521.4452743530273, - "relativeCreated": 77417.68765449524, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/floor/main_light_2 and payload {\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}", - "asctime": "2023-02-09 15:58:11,521" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.5222266, - "msecs": 522.2265720367432, - "relativeCreated": 77418.46895217896, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:11,522" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.522825, - "msecs": 522.8250026702881, - "relativeCreated": 77419.0673828125, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:11,522" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_1", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.5233672, - "msecs": 523.367166519165, - "relativeCreated": 77419.60954666138, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:11,523" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/floor/main_light_2", - "b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.523905, - "msecs": 523.9050388336182, - "relativeCreated": 77420.14741897583, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{\"state\": \"on\", \"brightness\": 127.0, \"color_temp\": 352.0, \"__type__\": \"tradfri_light\"}'", - "asctime": "2023-02-09 15:58:11,523" - } - ], - "time_consumption": 0.29323720932006836 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_1) state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954691.8178425, - "msecs": 817.8424835205078, - "relativeCreated": 77714.08486366272, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_1) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:11,817", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954691.8175595, - "msecs": 817.5594806671143, - "relativeCreated": 77713.80186080933, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) state): True ()", - "asctime": "2023-02-09 15:58:11,817" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954691.8177285, - "msecs": 817.7285194396973, - "relativeCreated": 77713.97089958191, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) state): result = True ()", - "asctime": "2023-02-09 15:58:11,817" - } - ], - "time_consumption": 0.00011396408081054688 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_2) state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954691.818204, - "msecs": 818.2039260864258, - "relativeCreated": 77714.44630622864, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_2) state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:11,818", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954691.8180206, - "msecs": 818.0205821990967, - "relativeCreated": 77714.26296234131, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) state): True ()", - "asctime": "2023-02-09 15:58:11,818" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954691.818117, - "msecs": 818.1169033050537, - "relativeCreated": 77714.35928344727, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) state): result = True ()", - "asctime": "2023-02-09 15:58:11,818" - } - ], - "time_consumption": 8.702278137207031e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing master device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/synchronisation.py", - "filename": "synchronisation.py", - "module": "synchronisation", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off_sync__", - "created": 1675954692.1204362, - "msecs": 120.43619155883789, - "relativeCreated": 78016.67857170105, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing master device state to 'False'", - "asctime": "2023-02-09 15:58:12,120", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954691.8184507, - "msecs": 818.4506893157959, - "relativeCreated": 77714.69306945801, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:11,818" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.819607, - "msecs": 819.6070194244385, - "relativeCreated": 77715.84939956665, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:11,819" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.8217525, - "msecs": 821.7525482177734, - "relativeCreated": 77717.99492835999, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:11,821" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/__info__", - "b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954691.822433, - "msecs": 822.4329948425293, - "relativeCreated": 77718.67537498474, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{\"__type__\": \"videv_switch_brightness_color_temp\", \"state\": {\"control\": true, \"display\": true}, \"brightness\": {\"control\": true, \"display\": true}, \"color_temp\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:11,822" - } - ], - "time_consumption": 0.2980031967163086 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_1) state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954692.1211488, - "msecs": 121.14882469177246, - "relativeCreated": 78017.39120483398, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_1) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:12,121", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954692.120847, - "msecs": 120.84698677062988, - "relativeCreated": 78017.08936691284, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_1) state): False ()", - "asctime": "2023-02-09 15:58:12,120" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_1) state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954692.1209812, - "msecs": 120.98121643066406, - "relativeCreated": 78017.22359657288, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_1) state): result = False ()", - "asctime": "2023-02-09 15:58:12,120" - } - ], - "time_consumption": 0.00016760826110839844 - }, - { - "name": "__tLogger__", - "msg": "Follower device (zigbee/gfw/floor/main_light_2) state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954692.1215422, - "msecs": 121.54221534729004, - "relativeCreated": 78017.7845954895, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Follower device (zigbee/gfw/floor/main_light_2) state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:12,121", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954692.1213477, - "msecs": 121.34766578674316, - "relativeCreated": 78017.59004592896, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Follower device (zigbee/gfw/floor/main_light_2) state): False ()", - "asctime": "2023-02-09 15:58:12,121" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Follower device (zigbee/gfw/floor/main_light_2) state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954692.121451, - "msecs": 121.45090103149414, - "relativeCreated": 78017.6932811737, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Follower device (zigbee/gfw/floor/main_light_2) state): result = False ()", - "asctime": "2023-02-09 15:58:12,121" - } - ], - "time_consumption": 9.131431579589844e-05 - } - ], - "time_consumption": 0.9066436290740967, - "time_start": "2023-02-09 15:58:11,214", - "time_finished": "2023-02-09 15:58:12,121" - }, - "Away mode test: zigbee/gfw/marion/heating_valve": { - "name": "__tLogger__", - "msg": "Away mode test: zigbee/gfw/marion/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 101, - "funcName": "test_away_mode", - "created": 1675954692.1220307, - "msecs": 122.03073501586914, - "relativeCreated": 78018.27311515808, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode test: zigbee/gfw/marion/heating_valve", - "asctime": "2023-02-09 15:58:12,122", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 106, - "funcName": "__test_away_mode__", - "created": 1675954692.4242606, - "msecs": 424.26061630249023, - "relativeCreated": 78320.5029964447, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:58:12,424", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954692.1223593, - "msecs": 122.3592758178711, - "relativeCreated": 78018.60165596008, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:58:12,122" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.123455, - "msecs": 123.45504760742188, - "relativeCreated": 78019.69742774963, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:58:12,123" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.141785, - "msecs": 141.7849063873291, - "relativeCreated": 78038.02728652954, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:12,141" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.142643, - "msecs": 142.64297485351562, - "relativeCreated": 78038.88535499573, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:12,142" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.1432383, - "msecs": 143.23830604553223, - "relativeCreated": 78039.48068618774, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:58:12,143" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954692.1435506, - "msecs": 143.55063438415527, - "relativeCreated": 78039.79301452637, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:12,143" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.1442428, - "msecs": 144.2427635192871, - "relativeCreated": 78040.4851436615, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:12,144" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.1449323, - "msecs": 144.93227005004883, - "relativeCreated": 78041.17465019226, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:12,144" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.1454973, - "msecs": 145.49732208251953, - "relativeCreated": 78041.73970222473, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:12,145" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.1926084, - "msecs": 192.60835647583008, - "relativeCreated": 78088.85073661804, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:12,192" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.234033, - "msecs": 234.03310775756836, - "relativeCreated": 78130.27548789978, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:12,234" - } - ], - "time_consumption": 0.19022750854492188 - }, - { - "name": "__tLogger__", - "msg": "Away mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954692.4248817, - "msecs": 424.8816967010498, - "relativeCreated": 78321.12407684326, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:12,424", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Away mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954692.4246392, - "msecs": 424.6392250061035, - "relativeCreated": 78320.88160514832, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Away mode): False ()", - "asctime": "2023-02-09 15:58:12,424" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Away mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954692.4247758, - "msecs": 424.7758388519287, - "relativeCreated": 78321.01821899414, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Away mode): result = False ()", - "asctime": "2023-02-09 15:58:12,424" - } - ], - "time_consumption": 0.00010585784912109375 - }, - { - "name": "__tLogger__", - "msg": "Activating away mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 113, - "funcName": "__test_away_mode__", - "created": 1675954692.7272208, - "msecs": 727.2207736968994, - "relativeCreated": 78623.46315383911, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Activating away mode", - "asctime": "2023-02-09 15:58:12,727", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/away_mode", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954692.4252782, - "msecs": 425.2781867980957, - "relativeCreated": 78321.52056694031, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/away_mode and payload true", - "asctime": "2023-02-09 15:58:12,425" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/away_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.4263368, - "msecs": 426.33676528930664, - "relativeCreated": 78322.57914543152, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'true'", - "asctime": "2023-02-09 15:58:12,426" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 18}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.4426148, - "msecs": 442.6147937774658, - "relativeCreated": 78338.85717391968, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", - "asctime": "2023-02-09 15:58:12,442" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954692.4430287, - "msecs": 443.02868843078613, - "relativeCreated": 78339.271068573, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:12,443" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.4436455, - "msecs": 443.6454772949219, - "relativeCreated": 78339.88785743713, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:58:12,443" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.4443183, - "msecs": 444.3182945251465, - "relativeCreated": 78340.56067466736, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:12,444" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/away_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.4448552, - "msecs": 444.8552131652832, - "relativeCreated": 78341.0975933075, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'true'", - "asctime": "2023-02-09 15:58:12,444" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.4453795, - "msecs": 445.37949562072754, - "relativeCreated": 78341.62187576294, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:12,445" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.4458747, - "msecs": 445.8746910095215, - "relativeCreated": 78342.11707115173, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:12,445" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.4901025, - "msecs": 490.10252952575684, - "relativeCreated": 78386.34490966797, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:12,490" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.53415, - "msecs": 534.1498851776123, - "relativeCreated": 78430.39226531982, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:12,534" - } - ], - "time_consumption": 0.1930708885192871 - }, - { - "name": "__tLogger__", - "msg": "Away mode is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954692.7278602, - "msecs": 727.8602123260498, - "relativeCreated": 78624.10259246826, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:12,727", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Away mode", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954692.7276156, - "msecs": 727.6155948638916, - "relativeCreated": 78623.8579750061, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Away mode): True ()", - "asctime": "2023-02-09 15:58:12,727" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Away mode", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954692.7277522, - "msecs": 727.7522087097168, - "relativeCreated": 78623.99458885193, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Away mode): result = True ()", - "asctime": "2023-02-09 15:58:12,727" - } - ], - "time_consumption": 0.00010800361633300781 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954692.7282574, - "msecs": 728.257417678833, - "relativeCreated": 78624.49979782104, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:58:12,728", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954692.7280698, - "msecs": 728.0697822570801, - "relativeCreated": 78624.31216239929, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 18 ()", - "asctime": "2023-02-09 15:58:12,728" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954692.7281687, - "msecs": 728.1687259674072, - "relativeCreated": 78624.41110610962, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 18 ()", - "asctime": "2023-02-09 15:58:12,728" - } - ], - "time_consumption": 8.869171142578125e-05 - }, - { - "name": "__tLogger__", - "msg": "Deactivating away mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 119, - "funcName": "__test_away_mode__", - "created": 1675954693.029936, - "msecs": 29.93607521057129, - "relativeCreated": 78926.17845535278, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Deactivating away mode", - "asctime": "2023-02-09 15:58:13,029", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/away_mode", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954692.7285469, - "msecs": 728.5468578338623, - "relativeCreated": 78624.78923797607, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/away_mode and payload false", - "asctime": "2023-02-09 15:58:12,728" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/away_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.7302158, - "msecs": 730.2157878875732, - "relativeCreated": 78626.45816802979, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'false'", - "asctime": "2023-02-09 15:58:12,730" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.741216, - "msecs": 741.2159442901611, - "relativeCreated": 78637.45832443237, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:58:12,741" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954692.7416792, - "msecs": 741.6791915893555, - "relativeCreated": 78637.92157173157, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:12,741" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.7423728, - "msecs": 742.3727512359619, - "relativeCreated": 78638.61513137817, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:12,742" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.7431307, - "msecs": 743.1306838989258, - "relativeCreated": 78639.37306404114, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:12,743" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.away_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/away_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.7437108, - "msecs": 743.7107563018799, - "relativeCreated": 78639.95313644409, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'false'", - "asctime": "2023-02-09 15:58:12,743" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.7442691, - "msecs": 744.2691326141357, - "relativeCreated": 78640.51151275635, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:12,744" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.7448266, - "msecs": 744.8265552520752, - "relativeCreated": 78641.06893539429, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:12,744" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.7891963, - "msecs": 789.196252822876, - "relativeCreated": 78685.43863296509, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:12,789" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954692.8300169, - "msecs": 830.0168514251709, - "relativeCreated": 78726.25923156738, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:12,830" - } - ], - "time_consumption": 0.1999192237854004 - }, - { - "name": "__tLogger__", - "msg": "Away mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954693.0306041, - "msecs": 30.604124069213867, - "relativeCreated": 78926.84650421143, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Away mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:13,030", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Away mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954693.0303392, - "msecs": 30.33924102783203, - "relativeCreated": 78926.58162117004, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Away mode): False ()", - "asctime": "2023-02-09 15:58:13,030" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Away mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954693.0304883, - "msecs": 30.488252639770508, - "relativeCreated": 78926.73063278198, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Away mode): result = False ()", - "asctime": "2023-02-09 15:58:13,030" - } - ], - "time_consumption": 0.00011587142944335938 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954693.0310082, - "msecs": 31.008243560791016, - "relativeCreated": 78927.250623703, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:58:13,031", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954693.0308187, - "msecs": 30.818700790405273, - "relativeCreated": 78927.06108093262, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:58:13,030" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954693.0309193, - "msecs": 30.919313430786133, - "relativeCreated": 78927.161693573, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:58:13,030" - } - ], - "time_consumption": 8.893013000488281e-05 - } - ], - "time_consumption": 0.9089775085449219, - "time_start": "2023-02-09 15:58:12,122", - "time_finished": "2023-02-09 15:58:13,031" - }, - "Boost mode test: zigbee/gfw/marion/heating_valve": { - "name": "__tLogger__", - "msg": "Boost mode test: zigbee/gfw/marion/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 128, - "funcName": "test_boost_mode", - "created": 1675954693.0314307, - "msecs": 31.430721282958984, - "relativeCreated": 78927.67310142517, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost mode test: zigbee/gfw/marion/heating_valve", - "asctime": "2023-02-09 15:58:13,031", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 133, - "funcName": "__test_boost_mode__", - "created": 1675954693.3336346, - "msecs": 333.634614944458, - "relativeCreated": 79229.87699508667, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:58:13,333", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954693.0317185, - "msecs": 31.71849250793457, - "relativeCreated": 78927.96087265015, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:58:13,031" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.032812, - "msecs": 32.81211853027344, - "relativeCreated": 78929.05449867249, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:58:13,032" - } - ], - "time_consumption": 0.30082249641418457 - }, - { - "name": "__tLogger__", - "msg": "Boost timer is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954693.334267, - "msecs": 334.26690101623535, - "relativeCreated": 79230.50928115845, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost timer is correct (Content 0 and Type is ).", - "asctime": "2023-02-09 15:58:13,334", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Boost timer", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954693.3340232, - "msecs": 334.02323722839355, - "relativeCreated": 79230.2656173706, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Boost timer): 0 ()", - "asctime": "2023-02-09 15:58:13,334" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Boost timer", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954693.3341596, - "msecs": 334.15961265563965, - "relativeCreated": 79230.40199279785, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Boost timer): result = 0 ()", - "asctime": "2023-02-09 15:58:13,334" - } - ], - "time_consumption": 0.00010728836059570312 - }, - { - "name": "__tLogger__", - "msg": "Activating boost mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 140, - "funcName": "__test_boost_mode__", - "created": 1675954693.6365023, - "msecs": 636.5022659301758, - "relativeCreated": 79532.74464607239, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Activating boost mode", - "asctime": "2023-02-09 15:58:13,636", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.start_boost", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/start_boost", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954693.3345823, - "msecs": 334.5823287963867, - "relativeCreated": 79230.8247089386, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/start_boost and payload true", - "asctime": "2023-02-09 15:58:13,334" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.start_boost", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/start_boost", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.3356838, - "msecs": 335.68382263183594, - "relativeCreated": 79231.92620277405, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/start_boost and payload b'true'", - "asctime": "2023-02-09 15:58:13,335" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.boost_timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/boost_timer", - "b'900'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.3484237, - "msecs": 348.42371940612793, - "relativeCreated": 79244.66609954834, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/boost_timer and payload b'900'", - "asctime": "2023-02-09 15:58:13,348" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.3490222, - "msecs": 349.02215003967285, - "relativeCreated": 79245.26453018188, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,349" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 30}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.349609, - "msecs": 349.6088981628418, - "relativeCreated": 79245.85127830505, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 30}'", - "asctime": "2023-02-09 15:58:13,349" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954693.3498883, - "msecs": 349.8883247375488, - "relativeCreated": 79246.13070487976, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:13,349" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'30'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.3504834, - "msecs": 350.4834175109863, - "relativeCreated": 79246.7257976532, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'30'", - "asctime": "2023-02-09 15:58:13,350" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.3511267, - "msecs": 351.12667083740234, - "relativeCreated": 79247.36905097961, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,351" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.3516345, - "msecs": 351.6345024108887, - "relativeCreated": 79247.8768825531, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 30, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:13,351" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.393575, - "msecs": 393.57495307922363, - "relativeCreated": 79289.81733322144, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:13,393" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.4349685, - "msecs": 434.9684715270996, - "relativeCreated": 79331.21085166931, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,434" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.boost_timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/boost_timer", - "b'899'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.5141208, - "msecs": 514.1208171844482, - "relativeCreated": 79410.36319732666, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/boost_timer and payload b'899'", - "asctime": "2023-02-09 15:58:13,514" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.514918, - "msecs": 514.9180889129639, - "relativeCreated": 79411.16046905518, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,514" - } - ], - "time_consumption": 0.12158417701721191 - }, - { - "name": "__tLogger__", - "msg": "Boost timer is greater expectation (Content %s and Type is %s).", - "args": [ - "899", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 230, - "funcName": "greater_chk", - "created": 1675954693.6372075, - "msecs": 637.2075080871582, - "relativeCreated": 79533.44988822937, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost timer is greater expectation (Content 899 and Type is ).", - "asctime": "2023-02-09 15:58:13,637", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Boost timer", - "899", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954693.6368983, - "msecs": 636.8982791900635, - "relativeCreated": 79533.14065933228, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Boost timer): 899 ()", - "asctime": "2023-02-09 15:58:13,636" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Boost timer", - ">", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954693.637037, - "msecs": 637.0370388031006, - "relativeCreated": 79533.27941894531, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Boost timer): result > 0 ()", - "asctime": "2023-02-09 15:58:13,637" - } - ], - "time_consumption": 0.0001704692840576172 - }, - { - "name": "__tLogger__", - "msg": "Setting postconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 145, - "funcName": "__test_boost_mode__", - "created": 1675954693.9394374, - "msecs": 939.4373893737793, - "relativeCreated": 79835.67976951599, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting postconditions (Default setpoint)", - "asctime": "2023-02-09 15:58:13,939", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954693.6374965, - "msecs": 637.4964714050293, - "relativeCreated": 79533.73885154724, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:58:13,637" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.6386366, - "msecs": 638.636589050293, - "relativeCreated": 79534.8789691925, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:58:13,638" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.boost_timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/boost_timer", - "b'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.651858, - "msecs": 651.8580913543701, - "relativeCreated": 79548.10047149658, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/boost_timer and payload b'0'", - "asctime": "2023-02-09 15:58:13,651" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.6525598, - "msecs": 652.559757232666, - "relativeCreated": 79548.80213737488, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,652" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.6531727, - "msecs": 653.1727313995361, - "relativeCreated": 79549.41511154175, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:58:13,653" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954693.653488, - "msecs": 653.4879207611084, - "relativeCreated": 79549.73030090332, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:13,653" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.6541345, - "msecs": 654.1345119476318, - "relativeCreated": 79550.37689208984, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:13,654" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.6548638, - "msecs": 654.8638343811035, - "relativeCreated": 79551.10621452332, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,654" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.6554434, - "msecs": 655.4434299468994, - "relativeCreated": 79551.68581008911, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:13,655" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.697954, - "msecs": 697.9539394378662, - "relativeCreated": 79594.19631958008, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:13,697" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.7070346, - "msecs": 707.0345878601074, - "relativeCreated": 79603.27696800232, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,707" - } - ], - "time_consumption": 0.23240280151367188 - }, - { - "name": "__tLogger__", - "msg": "Boost timer is correct (Content %s and Type is %s).", - "args": [ - "0", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954693.9400866, - "msecs": 940.0866031646729, - "relativeCreated": 79836.32898330688, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Boost timer is correct (Content 0 and Type is ).", - "asctime": "2023-02-09 15:58:13,940", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Boost timer", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954693.9398377, - "msecs": 939.8376941680908, - "relativeCreated": 79836.0800743103, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Boost timer): 0 ()", - "asctime": "2023-02-09 15:58:13,939" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Boost timer", - "=", - "0", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954693.939979, - "msecs": 939.979076385498, - "relativeCreated": 79836.22145652771, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Boost timer): result = 0 ()", - "asctime": "2023-02-09 15:58:13,939" - } - ], - "time_consumption": 0.00010752677917480469 - } - ], - "time_consumption": 0.9086558818817139, - "time_start": "2023-02-09 15:58:13,031", - "time_finished": "2023-02-09 15:58:13,940" - }, - "Default temperature test for device and virtual device: zigbee/gfw/marion/heating_valve": { - "name": "__tLogger__", - "msg": "Default temperature test for device and virtual device: zigbee/gfw/marion/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 50, - "funcName": "test_default_temperature", - "created": 1675954693.9405653, - "msecs": 940.5653476715088, - "relativeCreated": 79836.80772781372, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Default temperature test for device and virtual device: zigbee/gfw/marion/heating_valve", - "asctime": "2023-02-09 15:58:13,940", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Valve setpoint to %.1f)", - "args": [ - 18 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 60, - "funcName": "__test_default_temperature__", - "created": 1675954694.2429516, - "msecs": 242.9516315460205, - "relativeCreated": 80139.19401168823, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Valve setpoint to 18.0)", - "asctime": "2023-02-09 15:58:14,242", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954693.9409935, - "msecs": 940.9935474395752, - "relativeCreated": 79837.23592758179, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:13,940" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.9421093, - "msecs": 942.1093463897705, - "relativeCreated": 79838.35172653198, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:13,942" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 18}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.9646358, - "msecs": 964.6358489990234, - "relativeCreated": 79860.87822914124, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", - "asctime": "2023-02-09 15:58:13,964" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.965356, - "msecs": 965.3561115264893, - "relativeCreated": 79861.5984916687, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:58:13,965" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.9659405, - "msecs": 965.9404754638672, - "relativeCreated": 79862.18285560608, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,965" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.966537, - "msecs": 966.5369987487793, - "relativeCreated": 79862.77937889099, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:58:13,966" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.9673362, - "msecs": 967.3361778259277, - "relativeCreated": 79863.57855796814, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,967" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.9681165, - "msecs": 968.1165218353271, - "relativeCreated": 79864.35890197754, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:13,968" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954693.9689803, - "msecs": 968.9803123474121, - "relativeCreated": 79865.22269248962, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:13,968" - } - ], - "time_consumption": 0.2739713191986084 - }, - { - "name": "__tLogger__", - "msg": "Valve temperature setpoint (is not default temperature) is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954694.2436154, - "msecs": 243.61538887023926, - "relativeCreated": 80139.85776901245, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve temperature setpoint (is not default temperature) is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:14,243", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve temperature setpoint (is not default temperature)", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954694.243371, - "msecs": 243.37100982666016, - "relativeCreated": 80139.61338996887, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve temperature setpoint (is not default temperature)): True ()", - "asctime": "2023-02-09 15:58:14,243" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve temperature setpoint (is not default temperature)", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954694.2435079, - "msecs": 243.50786209106445, - "relativeCreated": 80139.75024223328, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve temperature setpoint (is not default temperature)): result = True ()", - "asctime": "2023-02-09 15:58:14,243" - } - ], - "time_consumption": 0.00010752677917480469 - }, - { - "name": "__tLogger__", - "msg": "Triggering set to default temperature (%.1f)", - "args": [ - 23 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 66, - "funcName": "__test_default_temperature__", - "created": 1675954694.5449328, - "msecs": 544.9328422546387, - "relativeCreated": 80441.17522239685, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Triggering set to default temperature (23.0)", - "asctime": "2023-02-09 15:58:14,544", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954694.2439265, - "msecs": 243.9265251159668, - "relativeCreated": 80140.16890525818, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:58:14,243" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.2450922, - "msecs": 245.09215354919434, - "relativeCreated": 80141.3345336914, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:58:14,245" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.2644215, - "msecs": 264.4214630126953, - "relativeCreated": 80160.6638431549, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:14,264" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.265121, - "msecs": 265.1209831237793, - "relativeCreated": 80161.36336326599, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:14,265" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.2656624, - "msecs": 265.66243171691895, - "relativeCreated": 80161.90481185913, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:58:14,265" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954694.2659492, - "msecs": 265.9492492675781, - "relativeCreated": 80162.19162940979, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:14,265" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.266533, - "msecs": 266.53289794921875, - "relativeCreated": 80162.77527809143, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:14,266" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.267186, - "msecs": 267.18592643737793, - "relativeCreated": 80163.42830657959, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:14,267" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.2676954, - "msecs": 267.69542694091797, - "relativeCreated": 80163.93780708313, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:14,267" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.3127277, - "msecs": 312.727689743042, - "relativeCreated": 80208.97006988525, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:14,312" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.3549516, - "msecs": 354.9516201019287, - "relativeCreated": 80251.19400024414, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:14,354" - } - ], - "time_consumption": 0.18998122215270996 - }, - { - "name": "__tLogger__", - "msg": "Valve temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954694.5456712, - "msecs": 545.6712245941162, - "relativeCreated": 80441.91360473633, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:58:14,545", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954694.5454206, - "msecs": 545.4206466674805, - "relativeCreated": 80441.66302680969, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:58:14,545" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954694.545561, - "msecs": 545.5610752105713, - "relativeCreated": 80441.80345535278, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:58:14,545" - } - ], - "time_consumption": 0.00011014938354492188 - } - ], - "time_consumption": 0.6051058769226074, - "time_start": "2023-02-09 15:58:13,940", - "time_finished": "2023-02-09 15:58:14,545" - }, - "Summer mode test: zigbee/gfw/marion/heating_valve": { - "name": "__tLogger__", - "msg": "Summer mode test: zigbee/gfw/marion/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "test_summer_mode", - "created": 1675954694.5461345, - "msecs": 546.1344718933105, - "relativeCreated": 80442.37685203552, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode test: zigbee/gfw/marion/heating_valve", - "asctime": "2023-02-09 15:58:14,546", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Setting preconditions (Default setpoint)", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 79, - "funcName": "__test_summer_mode__", - "created": 1675954694.848421, - "msecs": 848.4210968017578, - "relativeCreated": 80744.66347694397, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Setting preconditions (Default setpoint)", - "asctime": "2023-02-09 15:58:14,848", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954694.5464892, - "msecs": 546.4892387390137, - "relativeCreated": 80442.73161888123, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true", - "asctime": "2023-02-09 15:58:14,546" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.set_default_temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/set_default_temperature", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.5476058, - "msecs": 547.6057529449463, - "relativeCreated": 80443.84813308716, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true'", - "asctime": "2023-02-09 15:58:14,547" - } - ], - "time_consumption": 0.3008153438568115 - }, - { - "name": "__tLogger__", - "msg": "Summer mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954694.8490837, - "msecs": 849.083662033081, - "relativeCreated": 80745.3260421753, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:14,849", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Summer mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954694.8488083, - "msecs": 848.8082885742188, - "relativeCreated": 80745.05066871643, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Summer mode): False ()", - "asctime": "2023-02-09 15:58:14,848" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Summer mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954694.8489447, - "msecs": 848.9446640014648, - "relativeCreated": 80745.18704414368, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Summer mode): result = False ()", - "asctime": "2023-02-09 15:58:14,848" - } - ], - "time_consumption": 0.00013899803161621094 - }, - { - "name": "__tLogger__", - "msg": "Activating summer mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 86, - "funcName": "__test_summer_mode__", - "created": 1675954695.1513972, - "msecs": 151.3972282409668, - "relativeCreated": 81047.63960838318, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Activating summer mode", - "asctime": "2023-02-09 15:58:15,151", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/summer_mode", - "true" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954694.8494608, - "msecs": 849.4608402252197, - "relativeCreated": 80745.70322036743, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/summer_mode and payload true", - "asctime": "2023-02-09 15:58:14,849" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/summer_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.8505704, - "msecs": 850.5704402923584, - "relativeCreated": 80746.81282043457, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'true'", - "asctime": "2023-02-09 15:58:14,850" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 5}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.8689156, - "msecs": 868.9155578613281, - "relativeCreated": 80765.15793800354, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 5}'", - "asctime": "2023-02-09 15:58:14,868" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954694.8693845, - "msecs": 869.3845272064209, - "relativeCreated": 80765.62690734863, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:14,869" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.8700979, - "msecs": 870.0978755950928, - "relativeCreated": 80766.3402557373, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'5'", - "asctime": "2023-02-09 15:58:14,870" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.87086, - "msecs": 870.8600997924805, - "relativeCreated": 80767.10247993469, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:14,870" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/summer_mode", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.8714797, - "msecs": 871.4797496795654, - "relativeCreated": 80767.72212982178, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'true'", - "asctime": "2023-02-09 15:58:14,871" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.8720582, - "msecs": 872.0581531524658, - "relativeCreated": 80768.30053329468, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:14,872" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.8726258, - "msecs": 872.6258277893066, - "relativeCreated": 80768.86820793152, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 5, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:14,872" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.9136, - "msecs": 913.599967956543, - "relativeCreated": 80809.84234809875, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:14,913" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954694.955026, - "msecs": 955.0259113311768, - "relativeCreated": 80851.26829147339, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:14,955" - } - ], - "time_consumption": 0.19637131690979004 - }, - { - "name": "__tLogger__", - "msg": "Summer mode is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954695.1520348, - "msecs": 152.03475952148438, - "relativeCreated": 81048.2771396637, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:15,152", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Summer mode", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954695.1517875, - "msecs": 151.78751945495605, - "relativeCreated": 81048.02989959717, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Summer mode): True ()", - "asctime": "2023-02-09 15:58:15,151" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Summer mode", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954695.1519253, - "msecs": 151.92532539367676, - "relativeCreated": 81048.16770553589, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Summer mode): result = True ()", - "asctime": "2023-02-09 15:58:15,151" - } - ], - "time_consumption": 0.00010943412780761719 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "5", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954695.1524208, - "msecs": 152.4207592010498, - "relativeCreated": 81048.66313934326, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 5 and Type is ).", - "asctime": "2023-02-09 15:58:15,152", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954695.1522055, - "msecs": 152.2054672241211, - "relativeCreated": 81048.44784736633, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 5 ()", - "asctime": "2023-02-09 15:58:15,152" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "5", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954695.1523046, - "msecs": 152.30464935302734, - "relativeCreated": 81048.54702949524, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 5 ()", - "asctime": "2023-02-09 15:58:15,152" - } - ], - "time_consumption": 0.00011610984802246094 - }, - { - "name": "__tLogger__", - "msg": "Deactivating summer mode", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__test_summer_mode__", - "created": 1675954695.4546745, - "msecs": 454.67448234558105, - "relativeCreated": 81350.9168624878, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Deactivating summer mode", - "asctime": "2023-02-09 15:58:15,454", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/summer_mode", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954695.15272, - "msecs": 152.71997451782227, - "relativeCreated": 81048.96235466003, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/summer_mode and payload false", - "asctime": "2023-02-09 15:58:15,152" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/summer_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.153829, - "msecs": 153.82909774780273, - "relativeCreated": 81050.07147789001, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'false'", - "asctime": "2023-02-09 15:58:15,153" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.1649914, - "msecs": 164.9913787841797, - "relativeCreated": 81061.23375892639, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:58:15,164" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954695.1654594, - "msecs": 165.45939445495605, - "relativeCreated": 81061.70177459717, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:15,165" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.1661525, - "msecs": 166.1524772644043, - "relativeCreated": 81062.39485740662, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:15,166" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.1669106, - "msecs": 166.91064834594727, - "relativeCreated": 81063.15302848816, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:15,166" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.summer_mode", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/summer_mode", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.1674933, - "msecs": 167.49334335327148, - "relativeCreated": 81063.73572349548, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'false'", - "asctime": "2023-02-09 15:58:15,167" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.168058, - "msecs": 168.05791854858398, - "relativeCreated": 81064.3002986908, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:15,168" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.1686418, - "msecs": 168.6418056488037, - "relativeCreated": 81064.88418579102, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:15,168" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.2143903, - "msecs": 214.39027786254883, - "relativeCreated": 81110.63265800476, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:15,214" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.258168, - "msecs": 258.16798210144043, - "relativeCreated": 81154.41036224365, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:15,258" - } - ], - "time_consumption": 0.19650650024414062 - }, - { - "name": "__tLogger__", - "msg": "Summer mode is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954695.4553537, - "msecs": 455.3537368774414, - "relativeCreated": 81351.59611701965, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Summer mode is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:15,455", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Summer mode", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954695.4551008, - "msecs": 455.10077476501465, - "relativeCreated": 81351.34315490723, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Summer mode): False ()", - "asctime": "2023-02-09 15:58:15,455" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Summer mode", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954695.455243, - "msecs": 455.2431106567383, - "relativeCreated": 81351.48549079895, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Summer mode): result = False ()", - "asctime": "2023-02-09 15:58:15,455" - } - ], - "time_consumption": 0.000110626220703125 - }, - { - "name": "__tLogger__", - "msg": "Temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954695.455717, - "msecs": 455.7170867919922, - "relativeCreated": 81351.9594669342, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:58:15,455", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954695.4555242, - "msecs": 455.524206161499, - "relativeCreated": 81351.76658630371, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:58:15,455" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954695.4556265, - "msecs": 455.6264877319336, - "relativeCreated": 81351.86886787415, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:58:15,455" - } - ], - "time_consumption": 9.059906005859375e-05 - } - ], - "time_consumption": 0.9095826148986816, - "time_start": "2023-02-09 15:58:14,546", - "time_finished": "2023-02-09 15:58:15,455" - }, - "User temperature setpoint test for device and virtual device: zigbee/gfw/marion/heating_valve": { - "name": "__tLogger__", - "msg": "User temperature setpoint test for device and virtual device: zigbee/gfw/marion/heating_valve", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "test_user_temperature_setpoint", - "created": 1675954695.4562054, - "msecs": 456.2053680419922, - "relativeCreated": 81352.4477481842, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "User temperature setpoint test for device and virtual device: zigbee/gfw/marion/heating_valve", - "asctime": "2023-02-09 15:58:15,456", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Changing valve temperature setpoint to '%.1f'", - "args": [ - 18 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 33, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954695.757463, - "msecs": 757.4629783630371, - "relativeCreated": 81653.70535850525, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing valve temperature setpoint to '18.0'", - "asctime": "2023-02-09 15:58:15,757", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954695.4566257, - "msecs": 456.62569999694824, - "relativeCreated": 81352.86808013916, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:15,456" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.4577844, - "msecs": 457.78441429138184, - "relativeCreated": 81354.0267944336, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:15,457" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 18}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.4750695, - "msecs": 475.069522857666, - "relativeCreated": 81371.31190299988, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", - "asctime": "2023-02-09 15:58:15,475" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.4754524, - "msecs": 475.4524230957031, - "relativeCreated": 81371.69480323792, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:58:15,475" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.4757855, - "msecs": 475.785493850708, - "relativeCreated": 81372.02787399292, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:15,475" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.4760878, - "msecs": 476.0878086090088, - "relativeCreated": 81372.33018875122, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:58:15,476" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.4763892, - "msecs": 476.38916969299316, - "relativeCreated": 81372.6315498352, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:15,476" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.4766681, - "msecs": 476.668119430542, - "relativeCreated": 81372.91049957275, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:15,476" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.476979, - "msecs": 476.97901725769043, - "relativeCreated": 81373.2213973999, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:15,476" - } - ], - "time_consumption": 0.2804839611053467 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954695.7581282, - "msecs": 758.1281661987305, - "relativeCreated": 81654.37054634094, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:58:15,758", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954695.7578855, - "msecs": 757.8854560852051, - "relativeCreated": 81654.12783622742, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 18 ()", - "asctime": "2023-02-09 15:58:15,757" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954695.758022, - "msecs": 758.0220699310303, - "relativeCreated": 81654.26445007324, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 18 ()", - "asctime": "2023-02-09 15:58:15,758" - } - ], - "time_consumption": 0.00010609626770019531 - }, - { - "name": "__tLogger__", - "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954695.7585413, - "msecs": 758.5413455963135, - "relativeCreated": 81654.78372573853, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device user temperature is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:58:15,758", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device user temperature", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954695.7583447, - "msecs": 758.3446502685547, - "relativeCreated": 81654.58703041077, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device user temperature): 18 ()", - "asctime": "2023-02-09 15:58:15,758" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device user temperature", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954695.7584443, - "msecs": 758.4443092346191, - "relativeCreated": 81654.68668937683, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device user temperature): result = 18 ()", - "asctime": "2023-02-09 15:58:15,758" - } - ], - "time_consumption": 9.703636169433594e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing videv user temperature setpoint to '%.1f'", - "args": [ - 23 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 41, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954696.0607684, - "msecs": 60.76836585998535, - "relativeCreated": 81957.0107460022, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing videv user temperature setpoint to '23.0'", - "asctime": "2023-02-09 15:58:16,060", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "23" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954695.7588441, - "msecs": 758.8441371917725, - "relativeCreated": 81655.08651733398, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload 23", - "asctime": "2023-02-09 15:58:15,758" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.7599363, - "msecs": 759.9363327026367, - "relativeCreated": 81656.17871284485, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:15,759" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.7794695, - "msecs": 779.4694900512695, - "relativeCreated": 81675.71187019348, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:58:15,779" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954695.779908, - "msecs": 779.9079418182373, - "relativeCreated": 81676.15032196045, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:15,779" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.7806118, - "msecs": 780.6117534637451, - "relativeCreated": 81676.85413360596, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:15,780" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.7814097, - "msecs": 781.409740447998, - "relativeCreated": 81677.65212059021, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:15,781" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.7819989, - "msecs": 781.998872756958, - "relativeCreated": 81678.24125289917, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:15,781" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.7825642, - "msecs": 782.5641632080078, - "relativeCreated": 81678.80654335022, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:15,782" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.783124, - "msecs": 783.1239700317383, - "relativeCreated": 81679.36635017395, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:15,783" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.829784, - "msecs": 829.7839164733887, - "relativeCreated": 81726.0262966156, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:15,829" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954695.8750176, - "msecs": 875.0176429748535, - "relativeCreated": 81771.26002311707, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:15,875" - } - ], - "time_consumption": 0.18575072288513184 - }, - { - "name": "__tLogger__", - "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954696.0614653, - "msecs": 61.46526336669922, - "relativeCreated": 81957.70764350891, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve device temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:58:16,061", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve device temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954696.0612214, - "msecs": 61.22136116027832, - "relativeCreated": 81957.46374130249, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve device temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:58:16,061" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve device temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954696.061359, - "msecs": 61.35892868041992, - "relativeCreated": 81957.60130882263, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve device temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:58:16,061" - } - ], - "time_consumption": 0.00010633468627929688 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954696.0618196, - "msecs": 61.81955337524414, - "relativeCreated": 81958.06193351746, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:58:16,061", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954696.0616338, - "msecs": 61.63382530212402, - "relativeCreated": 81957.87620544434, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 23 ()", - "asctime": "2023-02-09 15:58:16,061" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954696.0617313, - "msecs": 61.73133850097656, - "relativeCreated": 81957.97371864319, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 23 ()", - "asctime": "2023-02-09 15:58:16,061" - } - ], - "time_consumption": 8.821487426757812e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing valve temperature setpoint to '%.1f'", - "args": [ - 18 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 33, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954696.3640726, - "msecs": 364.0725612640381, - "relativeCreated": 82260.31494140625, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing valve temperature setpoint to '18.0'", - "asctime": "2023-02-09 15:58:16,364", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954696.0621238, - "msecs": 62.123775482177734, - "relativeCreated": 81958.36615562439, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:16,062" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.0632293, - "msecs": 63.22932243347168, - "relativeCreated": 81959.47170257568, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 18, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:16,063" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 18}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.0826385, - "msecs": 82.63850212097168, - "relativeCreated": 81978.88088226318, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 18}'", - "asctime": "2023-02-09 15:58:16,082" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.0834076, - "msecs": 83.40764045715332, - "relativeCreated": 81979.65002059937, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:58:16,083" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.0840976, - "msecs": 84.09762382507324, - "relativeCreated": 81980.34000396729, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:16,084" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "b'18'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.0852838, - "msecs": 85.28375625610352, - "relativeCreated": 81981.52613639832, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'18'", - "asctime": "2023-02-09 15:58:16,085" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.0859272, - "msecs": 85.92724800109863, - "relativeCreated": 81982.16962814331, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:16,085" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.0864916, - "msecs": 86.49158477783203, - "relativeCreated": 81982.73396492004, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:16,086" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.0870984, - "msecs": 87.09836006164551, - "relativeCreated": 81983.34074020386, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:16,087" - } - ], - "time_consumption": 0.2769742012023926 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954696.3647323, - "msecs": 364.7322654724121, - "relativeCreated": 82260.97464561462, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:58:16,364", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954696.36449, - "msecs": 364.4900321960449, - "relativeCreated": 82260.73241233826, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 18 ()", - "asctime": "2023-02-09 15:58:16,364" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954696.3646255, - "msecs": 364.6254539489746, - "relativeCreated": 82260.86783409119, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 18 ()", - "asctime": "2023-02-09 15:58:16,364" - } - ], - "time_consumption": 0.0001068115234375 - }, - { - "name": "__tLogger__", - "msg": "Virtual device user temperature is correct (Content %s and Type is %s).", - "args": [ - "18", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954696.3651526, - "msecs": 365.15259742736816, - "relativeCreated": 82261.39497756958, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device user temperature is correct (Content 18 and Type is ).", - "asctime": "2023-02-09 15:58:16,365", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device user temperature", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954696.3648996, - "msecs": 364.8996353149414, - "relativeCreated": 82261.14201545715, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device user temperature): 18 ()", - "asctime": "2023-02-09 15:58:16,364" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device user temperature", - "=", - "18", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954696.3649964, - "msecs": 364.99643325805664, - "relativeCreated": 82261.23881340027, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device user temperature): result = 18 ()", - "asctime": "2023-02-09 15:58:16,364" - } - ], - "time_consumption": 0.00015616416931152344 - }, - { - "name": "__tLogger__", - "msg": "Changing videv user temperature setpoint to '%.1f'", - "args": [ - 23 - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/heating.py", - "filename": "heating.py", - "module": "heating", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 41, - "funcName": "__test_user_temperature_setpoint__", - "created": 1675954696.6673841, - "msecs": 667.384147644043, - "relativeCreated": 82563.62652778625, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing videv user temperature setpoint to '23.0'", - "asctime": "2023-02-09 15:58:16,667", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "23" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954696.3654525, - "msecs": 365.45252799987793, - "relativeCreated": 82261.69490814209, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload 23", - "asctime": "2023-02-09 15:58:16,365" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.3665633, - "msecs": 366.5633201599121, - "relativeCreated": 82262.80570030212, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:16,366" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve/set", - "b'{\"current_heating_setpoint\": 23}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.38596, - "msecs": 385.9601020812988, - "relativeCreated": 82282.20248222351, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{\"current_heating_setpoint\": 23}'", - "asctime": "2023-02-09 15:58:16,385" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954696.386404, - "msecs": 386.40403747558594, - "relativeCreated": 82282.6464176178, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic zigbee/gfw/marion/heating_valve and payload {\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}", - "asctime": "2023-02-09 15:58:16,386" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.valve_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/valve_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.387127, - "msecs": 387.1269226074219, - "relativeCreated": 82283.36930274963, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/valve_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:16,387" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.3878849, - "msecs": 387.88485527038574, - "relativeCreated": 82284.1272354126, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:16,387" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.user_temperature_setpoint", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/user_temperature_setpoint", - "b'23'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.3884661, - "msecs": 388.46611976623535, - "relativeCreated": 82284.70849990845, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23'", - "asctime": "2023-02-09 15:58:16,388" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.3890333, - "msecs": 389.03331756591797, - "relativeCreated": 82285.27569770813, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:16,389" - }, - { - "name": "smart_brain.mqtt.zigbee.gfw.marion.heating_valve", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee/gfw/marion/heating_valve", - "b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.3896742, - "msecs": 389.67418670654297, - "relativeCreated": 82285.91656684875, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic zigbee/gfw/marion/heating_valve and payload b'{\"current_heating_setpoint\": 23, \"local_temperature\": 20.7, \"__type__\": \"brennenstuhl_heating_valve\"}'", - "asctime": "2023-02-09 15:58:16,389" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.temperature", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/temperature", - "b'20.7'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.437829, - "msecs": 437.82901763916016, - "relativeCreated": 82334.07139778137, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7'", - "asctime": "2023-02-09 15:58:16,437" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.heating_valve.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/heating_valve/__info__", - "b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.482179, - "msecs": 482.1789264678955, - "relativeCreated": 82378.42130661011, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{\"__type__\": \"videv_heating\", \"user_temperature_setpoint\": {\"control\": true, \"display\": true}, \"away_mode\": {\"control\": true, \"display\": true}, \"summer_mode\": {\"control\": true, \"display\": true}, \"start_boost\": {\"control\": true}, \"set_default_temperature\": {\"control\": true}, \"valve_temperature_setpoint\": {\"display\": true}, \"boost_timer\": {\"display\": true}, \"temperature\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:16,482" - } - ], - "time_consumption": 0.18520522117614746 - }, - { - "name": "__tLogger__", - "msg": "Valve device temperature setpoint is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954696.6680524, - "msecs": 668.0524349212646, - "relativeCreated": 82564.29481506348, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Valve device temperature setpoint is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:58:16,668", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Valve device temperature setpoint", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954696.6678045, - "msecs": 667.804479598999, - "relativeCreated": 82564.04685974121, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Valve device temperature setpoint): 23 ()", - "asctime": "2023-02-09 15:58:16,667" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Valve device temperature setpoint", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954696.6679401, - "msecs": 667.9401397705078, - "relativeCreated": 82564.18251991272, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Valve device temperature setpoint): result = 23 ()", - "asctime": "2023-02-09 15:58:16,667" - } - ], - "time_consumption": 0.00011229515075683594 - }, - { - "name": "__tLogger__", - "msg": "Virtual device valve temperature is correct (Content %s and Type is %s).", - "args": [ - "23", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954696.6684117, - "msecs": 668.4117317199707, - "relativeCreated": 82564.65411186218, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device valve temperature is correct (Content 23 and Type is ).", - "asctime": "2023-02-09 15:58:16,668", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device valve temperature", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954696.6682255, - "msecs": 668.2255268096924, - "relativeCreated": 82564.4679069519, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device valve temperature): 23 ()", - "asctime": "2023-02-09 15:58:16,668" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device valve temperature", - "=", - "23", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954696.6683214, - "msecs": 668.3213710784912, - "relativeCreated": 82564.5637512207, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device valve temperature): result = 23 ()", - "asctime": "2023-02-09 15:58:16,668" - } - ], - "time_consumption": 9.036064147949219e-05 - } - ], - "time_consumption": 1.2122063636779785, - "time_start": "2023-02-09 15:58:15,456", - "time_finished": "2023-02-09 15:58:16,668" - }, - "Power On/ Off test for device and virtual device: shellies/gfw/marion/main_light": { - "name": "__tLogger__", - "msg": "Power On/ Off test for device and virtual device: shellies/gfw/marion/main_light", - "args": null, - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 27, - "funcName": "test_power_on_off", - "created": 1675954696.6689138, - "msecs": 668.9138412475586, - "relativeCreated": 82565.15622138977, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Power On/ Off test for device and virtual device: shellies/gfw/marion/main_light", - "asctime": "2023-02-09 15:58:16,668", - "moduleLogger": [], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954696.669346, - "msecs": 669.3460941314697, - "relativeCreated": 82565.58847427368, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:16,669", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954696.6691468, - "msecs": 669.1467761993408, - "relativeCreated": 82565.38915634155, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:16,669" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954696.6692545, - "msecs": 669.2545413970947, - "relativeCreated": 82565.4969215393, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:16,669" - } - ], - "time_consumption": 9.1552734375e-05 - }, { "name": "__tLogger__", "msg": "Changing switching device state to '%s'", @@ -109131,15 +93742,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954696.9714935, - "msecs": 971.4934825897217, - "relativeCreated": 82867.73586273193, - "thread": 139894075555840, + "created": 1676441686.3949633, + "msecs": 394.96326446533203, + "relativeCreated": 83398.4785079956, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:16,971", + "asctime": "2023-02-15 07:14:46,394", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", @@ -109158,15 +93769,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954696.669577, - "msecs": 669.57688331604, - "relativeCreated": 82565.81926345825, - "thread": 139894075555840, + "created": 1676441686.0938299, + "msecs": 93.82987022399902, + "relativeCreated": 83097.34511375427, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:16,669" + "asctime": "2023-02-15 07:14:46,093" }, { "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", @@ -109185,15 +93796,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954696.6706681, - "msecs": 670.6681251525879, - "relativeCreated": 82566.9105052948, - "thread": 139894051313216, + "created": 1676441686.094962, + "msecs": 94.96188163757324, + "relativeCreated": 83098.47712516785, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:16,670" + "asctime": "2023-02-15 07:14:46,094" }, { "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", @@ -109212,45 +93823,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954696.6728473, - "msecs": 672.8472709655762, - "relativeCreated": 82569.08965110779, - "thread": 139894051313216, + "created": 1676441686.0969677, + "msecs": 96.96769714355469, + "relativeCreated": 83100.48294067383, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:16,672" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.673594, - "msecs": 673.5939979553223, - "relativeCreated": 82569.83637809753, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:16,673" + "asctime": "2023-02-15 07:14:46,096" } ], - "time_consumption": 0.2978994846343994 + "time_consumption": 0.29799556732177734 }, { "name": "__tLogger__", @@ -109269,15 +93853,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954696.9721322, - "msecs": 972.1322059631348, - "relativeCreated": 82868.37458610535, - "thread": 139894075555840, + "created": 1676441686.3956926, + "msecs": 395.6925868988037, + "relativeCreated": 83399.20783042908, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:16,972", + "asctime": "2023-02-15 07:14:46,395", "moduleLogger": [ { "name": "__unittest__", @@ -109297,15 +93881,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954696.9718888, - "msecs": 971.8887805938721, - "relativeCreated": 82868.13116073608, - "thread": 139894075555840, + "created": 1676441686.3954163, + "msecs": 395.416259765625, + "relativeCreated": 83398.9315032959, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:16,971" + "asctime": "2023-02-15 07:14:46,395" }, { "name": "__unittest__", @@ -109326,18 +93910,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954696.9720256, - "msecs": 972.0256328582764, - "relativeCreated": 82868.26801300049, - "thread": 139894075555840, + "created": 1676441686.3955698, + "msecs": 395.5698013305664, + "relativeCreated": 83399.08504486084, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:16,972" + "asctime": "2023-02-15 07:14:46,395" } ], - "time_consumption": 0.00010657310485839844 + "time_consumption": 0.0001227855682373047 }, { "name": "__tLogger__", @@ -109356,15 +93940,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954696.9724915, - "msecs": 972.4915027618408, - "relativeCreated": 82868.73388290405, - "thread": 139894075555840, + "created": 1676441686.3961315, + "msecs": 396.1315155029297, + "relativeCreated": 83399.6467590332, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:16,972", + "asctime": "2023-02-15 07:14:46,396", "moduleLogger": [ { "name": "__unittest__", @@ -109384,15 +93968,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954696.9723036, - "msecs": 972.3036289215088, - "relativeCreated": 82868.54600906372, - "thread": 139894075555840, + "created": 1676441686.39592, + "msecs": 395.9200382232666, + "relativeCreated": 83399.43528175354, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:16,972" + "asctime": "2023-02-15 07:14:46,395" }, { "name": "__unittest__", @@ -109413,18 +93997,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954696.972402, - "msecs": 972.4020957946777, - "relativeCreated": 82868.64447593689, - "thread": 139894075555840, + "created": 1676441686.3960319, + "msecs": 396.03185653686523, + "relativeCreated": 83399.54710006714, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:16,972" + "asctime": "2023-02-15 07:14:46,396" } ], - "time_consumption": 8.940696716308594e-05 + "time_consumption": 9.965896606445312e-05 }, { "name": "__tLogger__", @@ -109442,21 +94026,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954697.274768, - "msecs": 274.7681140899658, - "relativeCreated": 83171.01049423218, - "thread": 139894075555840, + "created": 1676441686.6975944, + "msecs": 697.594404220581, + "relativeCreated": 83701.10964775085, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:17,274", + "asctime": "2023-02-15 07:14:46,697", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", + "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/gfw/marion/main_light/state", + "videv/gfw/marion/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -109469,42 +94053,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954696.972767, - "msecs": 972.7671146392822, - "relativeCreated": 82869.0094947815, - "thread": 139894075555840, + "created": 1676441686.3964126, + "msecs": 396.41261100769043, + "relativeCreated": 83399.92785453796, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/main_light/state and payload false", - "asctime": "2023-02-09 15:58:16,972" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954696.9738808, - "msecs": 973.8807678222656, - "relativeCreated": 82870.12314796448, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:16,973" + "process": 509276, + "message": "Sending message with topic videv/gfw/marion/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:46,396" }, { "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0.command", @@ -109523,15 +94080,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954696.9755504, - "msecs": 975.5504131317139, - "relativeCreated": 82871.79279327393, - "thread": 139894051313216, + "created": 1676441686.3999045, + "msecs": 399.9044895172119, + "relativeCreated": 83403.41973304749, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:16,975" + "asctime": "2023-02-15 07:14:46,399" }, { "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", @@ -109550,15 +94107,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954696.975882, - "msecs": 975.8820533752441, - "relativeCreated": 82872.12443351746, - "thread": 139894051313216, + "created": 1676441686.4003534, + "msecs": 400.35343170166016, + "relativeCreated": 83403.86867523193, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:16,975" + "asctime": "2023-02-15 07:14:46,400" }, { "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", @@ -109577,15 +94134,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954696.976905, - "msecs": 976.905107498169, - "relativeCreated": 82873.14748764038, - "thread": 139894051313216, + "created": 1676441686.4016693, + "msecs": 401.6692638397217, + "relativeCreated": 83405.18450737, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:16,976" + "asctime": "2023-02-15 07:14:46,401" }, { "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", @@ -109604,45 +94161,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954697.0210772, - "msecs": 21.07715606689453, - "relativeCreated": 82917.3195362091, - "thread": 139894051313216, + "created": 1676441686.4458814, + "msecs": 445.8813667297363, + "relativeCreated": 83449.39661026001, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:17,021" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.021798, - "msecs": 21.797895431518555, - "relativeCreated": 82918.04027557373, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:17,021" + "asctime": "2023-02-15 07:14:46,445" } ], - "time_consumption": 0.25297021865844727 + "time_consumption": 0.2517130374908447 }, { "name": "__tLogger__", @@ -109661,15 +94191,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954697.2754261, - "msecs": 275.42614936828613, - "relativeCreated": 83171.6685295105, - "thread": 139894075555840, + "created": 1676441686.698371, + "msecs": 698.3709335327148, + "relativeCreated": 83701.88617706299, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:17,275", + "asctime": "2023-02-15 07:14:46,698", "moduleLogger": [ { "name": "__unittest__", @@ -109689,15 +94219,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954697.2751825, - "msecs": 275.18248558044434, - "relativeCreated": 83171.42486572266, - "thread": 139894075555840, + "created": 1676441686.6980553, + "msecs": 698.0552673339844, + "relativeCreated": 83701.57051086426, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:17,275" + "asctime": "2023-02-15 07:14:46,698" }, { "name": "__unittest__", @@ -109718,726 +94248,23 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954697.2753177, - "msecs": 275.3176689147949, - "relativeCreated": 83171.560049057, - "thread": 139894075555840, + "created": 1676441686.698208, + "msecs": 698.2080936431885, + "relativeCreated": 83701.72333717346, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:17,275" + "asctime": "2023-02-15 07:14:46,698" } ], - "time_consumption": 0.00010848045349121094 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954697.2757893, - "msecs": 275.7892608642578, - "relativeCreated": 83172.03164100647, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:17,275", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954697.2755985, - "msecs": 275.59852600097656, - "relativeCreated": 83171.84090614319, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:17,275" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954697.2756999, - "msecs": 275.6998538970947, - "relativeCreated": 83171.9422340393, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:17,275" - } - ], - "time_consumption": 8.940696716308594e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing switching device state to '%s'", - "args": [ - true - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 36, - "funcName": "__test_power_on_off__", - "created": 1675954697.5779922, - "msecs": 577.9922008514404, - "relativeCreated": 83474.23458099365, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:17,577", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/marion/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954697.2760499, - "msecs": 276.0498523712158, - "relativeCreated": 83172.29223251343, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:17,276" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/marion/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.277169, - "msecs": 277.16898918151855, - "relativeCreated": 83173.41136932373, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:17,277" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.2792797, - "msecs": 279.2797088623047, - "relativeCreated": 83175.52208900452, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:17,279" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.2799418, - "msecs": 279.9417972564697, - "relativeCreated": 83176.18417739868, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:17,279" - } - ], - "time_consumption": 0.2980504035949707 - }, - { - "name": "__tLogger__", - "msg": "Virtual device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954697.578636, - "msecs": 578.6359310150146, - "relativeCreated": 83474.87831115723, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:17,578", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Virtual device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954697.5783963, - "msecs": 578.3963203430176, - "relativeCreated": 83474.63870048523, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:17,578" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Virtual device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954697.57853, - "msecs": 578.5300731658936, - "relativeCreated": 83474.7724533081, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:17,578" - } - ], - "time_consumption": 0.00010585784912109375 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "True", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954697.5789912, - "msecs": 578.991174697876, - "relativeCreated": 83475.23355484009, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:17,578", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954697.578804, - "msecs": 578.8040161132812, - "relativeCreated": 83475.0463962555, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:17,578" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "True", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954697.5789053, - "msecs": 578.9053440093994, - "relativeCreated": 83475.14772415161, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:17,578" - } - ], - "time_consumption": 8.58306884765625e-05 - }, - { - "name": "__tLogger__", - "msg": "Changing virtual device state to '%s'", - "args": [ - false - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/tests/light.py", - "filename": "light.py", - "module": "light", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 42, - "funcName": "__test_power_on_off__", - "created": 1675954697.8812175, - "msecs": 881.2174797058105, - "relativeCreated": 83777.45985984802, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:17,881", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/state", - "false" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954697.579262, - "msecs": 579.2620182037354, - "relativeCreated": 83475.50439834595, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/gfw/marion/main_light/state and payload false", - "asctime": "2023-02-09 15:58:17,579" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.5803776, - "msecs": 580.3775787353516, - "relativeCreated": 83476.61995887756, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:17,580" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/marion/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.581994, - "msecs": 581.9940567016602, - "relativeCreated": 83478.23643684387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:17,581" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/marion/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1675954697.5823302, - "msecs": 582.3302268981934, - "relativeCreated": 83478.5726070404, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:17,582" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.marion.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/marion/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.5833795, - "msecs": 583.3795070648193, - "relativeCreated": 83479.62188720703, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:17,583" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.629078, - "msecs": 629.0779113769531, - "relativeCreated": 83525.32029151917, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:17,629" - }, - { - "name": "smart_brain.mqtt.videv.gfw.marion.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/marion/main_light/__info__", - "b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.6297915, - "msecs": 629.7914981842041, - "relativeCreated": 83526.03387832642, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/gfw/marion/main_light/__info__ and payload b'{\"__type__\": \"videv_switching\", \"state\": {\"control\": true, \"display\": true}}'", - "asctime": "2023-02-09 15:58:17,629" - } - ], - "time_consumption": 0.25142598152160645 - }, - { - "name": "__tLogger__", - "msg": "Switching device state is correct (Content %s and Type is %s).", - "args": [ - "False", - "" - ], - "levelname": "INFO", - "levelno": 20, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 184, - "funcName": "equivalency_chk", - "created": 1675954697.881868, - "msecs": 881.8678855895996, - "relativeCreated": 83778.11026573181, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:17,881", - "moduleLogger": [ - { - "name": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Switching device state", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 22, - "funcName": "__report_result__", - "created": 1675954697.8816276, - "msecs": 881.6275596618652, - "relativeCreated": 83777.86993980408, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:17,881" - }, - { - "name": "__unittest__", - "msg": "Expectation (%s): result %s %s (%s)", - "args": [ - "Switching device state", - "=", - "False", - "" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/unittest/test.py", - "filename": "test.py", - "module": "test", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 26, - "funcName": "__report_expectation__", - "created": 1675954697.8817644, - "msecs": 881.7644119262695, - "relativeCreated": 83778.00679206848, - "thread": 139894075555840, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 59129, - "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:17,881" - } - ], - "time_consumption": 0.00010347366333007812 + "time_consumption": 0.0001628398895263672 } ], - "time_consumption": 1.212954044342041, - "time_start": "2023-02-09 15:58:16,668", - "time_finished": "2023-02-09 15:58:17,881" + "time_consumption": 1.210982322692871, + "time_start": "2023-02-15 07:14:45,487", + "time_finished": "2023-02-15 07:14:46,698" }, "Power On/ Off test for device and virtual device: shellies/stw/stairway/main_light": { "name": "__tLogger__", @@ -110453,15 +94280,15 @@ "stack_info": null, "lineno": 27, "funcName": "test_power_on_off", - "created": 1675954697.8824096, - "msecs": 882.4095726013184, - "relativeCreated": 83778.65195274353, - "thread": 139894075555840, + "created": 1676441686.6989608, + "msecs": 698.9607810974121, + "relativeCreated": 83702.47602462769, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Power On/ Off test for device and virtual device: shellies/stw/stairway/main_light", - "asctime": "2023-02-09 15:58:17,882", + "asctime": "2023-02-15 07:14:46,698", "moduleLogger": [], "testcaseLogger": [ { @@ -110481,15 +94308,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954697.8828197, - "msecs": 882.819652557373, - "relativeCreated": 83779.06203269958, - "thread": 139894075555840, + "created": 1676441686.6994174, + "msecs": 699.4173526763916, + "relativeCreated": 83702.93259620667, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:17,882", + "asctime": "2023-02-15 07:14:46,699", "moduleLogger": [ { "name": "__unittest__", @@ -110509,15 +94336,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954697.8826122, - "msecs": 882.6122283935547, - "relativeCreated": 83778.85460853577, - "thread": 139894075555840, + "created": 1676441686.6991894, + "msecs": 699.1894245147705, + "relativeCreated": 83702.70466804504, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:17,882" + "asctime": "2023-02-15 07:14:46,699" }, { "name": "__unittest__", @@ -110538,18 +94365,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954697.8827264, - "msecs": 882.7264308929443, - "relativeCreated": 83778.96881103516, - "thread": 139894075555840, + "created": 1676441686.6993117, + "msecs": 699.3117332458496, + "relativeCreated": 83702.82697677612, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:17,882" + "asctime": "2023-02-15 07:14:46,699" } ], - "time_consumption": 9.322166442871094e-05 + "time_consumption": 0.00010561943054199219 }, { "name": "__tLogger__", @@ -110567,15 +94394,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954698.1838956, - "msecs": 183.89558792114258, - "relativeCreated": 84080.13796806335, - "thread": 139894075555840, + "created": 1676441687.0005865, + "msecs": 0.5865097045898438, + "relativeCreated": 84004.10175323486, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:18,183", + "asctime": "2023-02-15 07:14:47,000", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0", @@ -110594,15 +94421,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954697.8830545, - "msecs": 883.0544948577881, - "relativeCreated": 83779.296875, - "thread": 139894075555840, + "created": 1676441686.6997006, + "msecs": 699.7005939483643, + "relativeCreated": 83703.21583747864, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/stw/stairway/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:17,883" + "asctime": "2023-02-15 07:14:46,699" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0", @@ -110621,15 +94448,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954697.8841388, - "msecs": 884.138822555542, - "relativeCreated": 83780.38120269775, - "thread": 139894051313216, + "created": 1676441686.7009358, + "msecs": 700.9358406066895, + "relativeCreated": 83704.45108413696, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/stw/stairway/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:17,884" + "asctime": "2023-02-15 07:14:46,700" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", @@ -110648,42 +94475,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954697.8869402, - "msecs": 886.9402408599854, - "relativeCreated": 83783.1826210022, - "thread": 139894051313216, + "created": 1676441686.7043884, + "msecs": 704.3883800506592, + "relativeCreated": 83707.90362358093, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'100'", - "asctime": "2023-02-09 15:58:17,886" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/__info__", - "b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.8876438, - "msecs": 887.6438140869141, - "relativeCreated": 83783.88619422913, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:17,887" + "asctime": "2023-02-15 07:14:46,704" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", @@ -110702,45 +94502,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954697.8882332, - "msecs": 888.2331848144531, - "relativeCreated": 83784.47556495667, - "thread": 139894051313216, + "created": 1676441686.70523, + "msecs": 705.2299976348877, + "relativeCreated": 83708.74524116516, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:17,888" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/__info__", - "b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954697.8888168, - "msecs": 888.8168334960938, - "relativeCreated": 83785.0592136383, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:17,888" + "asctime": "2023-02-15 07:14:46,705" } ], - "time_consumption": 0.29507875442504883 + "time_consumption": 0.29535651206970215 }, { "name": "__tLogger__", @@ -110759,15 +94532,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954698.1845405, - "msecs": 184.5405101776123, - "relativeCreated": 84080.78289031982, - "thread": 139894075555840, + "created": 1676441687.0012367, + "msecs": 1.2366771697998047, + "relativeCreated": 84004.75192070007, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:18,184", + "asctime": "2023-02-15 07:14:47,001", "moduleLogger": [ { "name": "__unittest__", @@ -110787,15 +94560,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954698.1843038, - "msecs": 184.30376052856445, - "relativeCreated": 84080.54614067078, - "thread": 139894075555840, + "created": 1676441687.0009756, + "msecs": 0.9756088256835938, + "relativeCreated": 84004.49085235596, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:18,184" + "asctime": "2023-02-15 07:14:47,000" }, { "name": "__unittest__", @@ -110816,18 +94589,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954698.1844363, - "msecs": 184.43632125854492, - "relativeCreated": 84080.67870140076, - "thread": 139894075555840, + "created": 1676441687.0011282, + "msecs": 1.1281967163085938, + "relativeCreated": 84004.64344024658, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:18,184" + "asctime": "2023-02-15 07:14:47,001" } ], - "time_consumption": 0.00010418891906738281 + "time_consumption": 0.00010848045349121094 }, { "name": "__tLogger__", @@ -110846,15 +94619,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954698.1849296, - "msecs": 184.92960929870605, - "relativeCreated": 84081.17198944092, - "thread": 139894075555840, + "created": 1676441687.0015967, + "msecs": 1.596689224243164, + "relativeCreated": 84005.11193275452, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:18,184", + "asctime": "2023-02-15 07:14:47,001", "moduleLogger": [ { "name": "__unittest__", @@ -110874,15 +94647,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954698.1847432, - "msecs": 184.74316596984863, - "relativeCreated": 84080.98554611206, - "thread": 139894075555840, + "created": 1676441687.0014079, + "msecs": 1.4078617095947266, + "relativeCreated": 84004.92310523987, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:18,184" + "asctime": "2023-02-15 07:14:47,001" }, { "name": "__unittest__", @@ -110903,18 +94676,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954698.184843, - "msecs": 184.8430633544922, - "relativeCreated": 84081.0854434967, - "thread": 139894075555840, + "created": 1676441687.0015073, + "msecs": 1.5072822570800781, + "relativeCreated": 84005.02252578735, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:18,184" + "asctime": "2023-02-15 07:14:47,001" } ], - "time_consumption": 8.654594421386719e-05 + "time_consumption": 8.940696716308594e-05 }, { "name": "__tLogger__", @@ -110932,21 +94705,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954698.4871702, - "msecs": 487.1702194213867, - "relativeCreated": 84383.4125995636, - "thread": 139894075555840, + "created": 1676441687.3029647, + "msecs": 302.9646873474121, + "relativeCreated": 84306.47993087769, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:18,487", + "asctime": "2023-02-15 07:14:47,302", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", + "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/stw/stairway/main_light/state", + "videv/stw/stairway/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -110959,42 +94732,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954698.185239, - "msecs": 185.23907661437988, - "relativeCreated": 84081.48145675659, - "thread": 139894075555840, + "created": 1676441687.0018828, + "msecs": 1.882791519165039, + "relativeCreated": 84005.39803504944, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/stw/stairway/main_light/state and payload false", - "asctime": "2023-02-09 15:58:18,185" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.1863372, - "msecs": 186.33723258972168, - "relativeCreated": 84082.57961273193, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:18,186" + "process": 509276, + "message": "Sending message with topic videv/stw/stairway/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:47,001" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0.command", @@ -111013,15 +94759,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.1879907, - "msecs": 187.99066543579102, - "relativeCreated": 84084.233045578, - "thread": 139894051313216, + "created": 1676441687.00474, + "msecs": 4.739999771118164, + "relativeCreated": 84008.25524330139, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/stw/stairway/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:18,187" + "asctime": "2023-02-15 07:14:47,004" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0", @@ -111040,15 +94786,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954698.1884725, - "msecs": 188.47250938415527, - "relativeCreated": 84084.71488952637, - "thread": 139894051313216, + "created": 1676441687.005294, + "msecs": 5.294084548950195, + "relativeCreated": 84008.80932807922, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/stw/stairway/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:18,188" + "asctime": "2023-02-15 07:14:47,005" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0", @@ -111067,15 +94813,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.189379, - "msecs": 189.3789768218994, - "relativeCreated": 84085.62135696411, - "thread": 139894051313216, + "created": 1676441687.0062606, + "msecs": 6.26063346862793, + "relativeCreated": 84009.7758769989, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/stw/stairway/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:18,189" + "asctime": "2023-02-15 07:14:47,006" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0.command", @@ -111094,15 +94840,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.2341828, - "msecs": 234.18283462524414, - "relativeCreated": 84130.42521476746, - "thread": 139894051313216, + "created": 1676441687.050679, + "msecs": 50.67896842956543, + "relativeCreated": 84054.19421195984, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/stw/stairway/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:18,234" + "asctime": "2023-02-15 07:14:47,050" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", @@ -111121,42 +94867,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.234919, - "msecs": 234.91907119750977, - "relativeCreated": 84131.16145133972, - "thread": 139894051313216, + "created": 1676441687.0514657, + "msecs": 51.465749740600586, + "relativeCreated": 84054.98099327087, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'0'", - "asctime": "2023-02-09 15:58:18,234" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/__info__", - "b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.2355404, - "msecs": 235.54039001464844, - "relativeCreated": 84131.78277015686, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:18,235" + "asctime": "2023-02-15 07:14:47,051" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", @@ -111175,45 +94894,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.2360904, - "msecs": 236.09042167663574, - "relativeCreated": 84132.33280181885, - "thread": 139894051313216, + "created": 1676441687.0521317, + "msecs": 52.13165283203125, + "relativeCreated": 84055.6468963623, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:18,236" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/__info__", - "b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.2366903, - "msecs": 236.69028282165527, - "relativeCreated": 84132.93266296387, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:18,236" + "asctime": "2023-02-15 07:14:47,052" } ], - "time_consumption": 0.25047993659973145 + "time_consumption": 0.25083303451538086 }, { "name": "__tLogger__", @@ -111232,15 +94924,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954698.487825, - "msecs": 487.8249168395996, - "relativeCreated": 84384.06729698181, - "thread": 139894075555840, + "created": 1676441687.3037028, + "msecs": 303.70283126831055, + "relativeCreated": 84307.21807479858, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:18,487", + "asctime": "2023-02-15 07:14:47,303", "moduleLogger": [ { "name": "__unittest__", @@ -111260,15 +94952,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954698.4875855, - "msecs": 487.58554458618164, - "relativeCreated": 84383.8279247284, - "thread": 139894075555840, + "created": 1676441687.3034253, + "msecs": 303.4253120422363, + "relativeCreated": 84306.94055557251, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:18,487" + "asctime": "2023-02-15 07:14:47,303" }, { "name": "__unittest__", @@ -111289,18 +94981,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954698.4877188, - "msecs": 487.7188205718994, - "relativeCreated": 84383.96120071411, - "thread": 139894075555840, + "created": 1676441687.3035781, + "msecs": 303.57813835144043, + "relativeCreated": 84307.09338188171, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:18,487" + "asctime": "2023-02-15 07:14:47,303" } ], - "time_consumption": 0.00010609626770019531 + "time_consumption": 0.0001246929168701172 }, { "name": "__tLogger__", @@ -111319,15 +95011,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954698.4881756, - "msecs": 488.175630569458, - "relativeCreated": 84384.41801071167, - "thread": 139894075555840, + "created": 1676441687.30411, + "msecs": 304.110050201416, + "relativeCreated": 84307.62529373169, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:18,488", + "asctime": "2023-02-15 07:14:47,304", "moduleLogger": [ { "name": "__unittest__", @@ -111347,15 +95039,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954698.4879916, - "msecs": 487.9915714263916, - "relativeCreated": 84384.2339515686, - "thread": 139894075555840, + "created": 1676441687.3038993, + "msecs": 303.89928817749023, + "relativeCreated": 84307.41453170776, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): False ()", - "asctime": "2023-02-09 15:58:18,487" + "asctime": "2023-02-15 07:14:47,303" }, { "name": "__unittest__", @@ -111376,18 +95068,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954698.4880896, - "msecs": 488.08956146240234, - "relativeCreated": 84384.33194160461, - "thread": 139894075555840, + "created": 1676441687.3040104, + "msecs": 304.01039123535156, + "relativeCreated": 84307.52563476562, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = False ()", - "asctime": "2023-02-09 15:58:18,488" + "asctime": "2023-02-15 07:14:47,304" } ], - "time_consumption": 8.606910705566406e-05 + "time_consumption": 9.965896606445312e-05 }, { "name": "__tLogger__", @@ -111405,15 +95097,15 @@ "stack_info": null, "lineno": 36, "funcName": "__test_power_on_off__", - "created": 1675954698.7892754, - "msecs": 789.2754077911377, - "relativeCreated": 84685.51778793335, - "thread": 139894075555840, + "created": 1676441687.6055937, + "msecs": 605.5936813354492, + "relativeCreated": 84609.10892486572, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing switching device state to 'True'", - "asctime": "2023-02-09 15:58:18,789", + "asctime": "2023-02-15 07:14:47,605", "moduleLogger": [ { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0", @@ -111432,15 +95124,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954698.4884045, - "msecs": 488.4045124053955, - "relativeCreated": 84384.64689254761, - "thread": 139894075555840, + "created": 1676441687.304377, + "msecs": 304.37707901000977, + "relativeCreated": 84307.89232254028, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/stw/stairway/main_light/relay/0 and payload on", - "asctime": "2023-02-09 15:58:18,488" + "asctime": "2023-02-15 07:14:47,304" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0", @@ -111459,15 +95151,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.489541, - "msecs": 489.54105377197266, - "relativeCreated": 84385.78343391418, - "thread": 139894051313216, + "created": 1676441687.3056984, + "msecs": 305.6983947753906, + "relativeCreated": 84309.21363830566, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/stw/stairway/main_light/relay/0 and payload b'on'", - "asctime": "2023-02-09 15:58:18,489" + "asctime": "2023-02-15 07:14:47,305" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", @@ -111486,42 +95178,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.4922426, - "msecs": 492.24257469177246, - "relativeCreated": 84388.48495483398, - "thread": 139894051313216, + "created": 1676441687.3089497, + "msecs": 308.94970893859863, + "relativeCreated": 84312.46495246887, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'100'", - "asctime": "2023-02-09 15:58:18,492" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/__info__", - "b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.5337996, - "msecs": 533.7996482849121, - "relativeCreated": 84430.04202842712, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:18,533" + "asctime": "2023-02-15 07:14:47,308" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", @@ -111540,99 +95205,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.5345316, - "msecs": 534.5315933227539, - "relativeCreated": 84430.77397346497, - "thread": 139894051313216, + "created": 1676441687.3097873, + "msecs": 309.7872734069824, + "relativeCreated": 84313.30251693726, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'true'", - "asctime": "2023-02-09 15:58:18,534" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/__info__", - "b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.5351264, - "msecs": 535.1264476776123, - "relativeCreated": 84431.36882781982, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:18,535" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/timer", - "b'99'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.535636, - "msecs": 535.6359481811523, - "relativeCreated": 84431.87832832336, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'99'", - "asctime": "2023-02-09 15:58:18,535" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/__info__", - "b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.5361493, - "msecs": 536.149263381958, - "relativeCreated": 84432.39164352417, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:18,536" + "asctime": "2023-02-15 07:14:47,309" } ], - "time_consumption": 0.2531261444091797 + "time_consumption": 0.2958064079284668 }, { "name": "__tLogger__", @@ -111651,15 +95235,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954698.7900276, - "msecs": 790.0276184082031, - "relativeCreated": 84686.26999855042, - "thread": 139894075555840, + "created": 1676441687.6065016, + "msecs": 606.501579284668, + "relativeCreated": 84610.01682281494, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Virtual device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:18,790", + "asctime": "2023-02-15 07:14:47,606", "moduleLogger": [ { "name": "__unittest__", @@ -111679,15 +95263,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954698.7897272, - "msecs": 789.7272109985352, - "relativeCreated": 84685.96959114075, - "thread": 139894075555840, + "created": 1676441687.6061063, + "msecs": 606.1062812805176, + "relativeCreated": 84609.62152481079, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Virtual device state): True ()", - "asctime": "2023-02-09 15:58:18,789" + "asctime": "2023-02-15 07:14:47,606" }, { "name": "__unittest__", @@ -111708,18 +95292,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954698.789883, - "msecs": 789.8828983306885, - "relativeCreated": 84686.1252784729, - "thread": 139894075555840, + "created": 1676441687.606312, + "msecs": 606.3120365142822, + "relativeCreated": 84609.82728004456, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Virtual device state): result = True ()", - "asctime": "2023-02-09 15:58:18,789" + "asctime": "2023-02-15 07:14:47,606" } ], - "time_consumption": 0.00014472007751464844 + "time_consumption": 0.0001895427703857422 }, { "name": "__tLogger__", @@ -111738,15 +95322,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954698.79042, - "msecs": 790.4200553894043, - "relativeCreated": 84686.66243553162, - "thread": 139894075555840, + "created": 1676441687.6069727, + "msecs": 606.9726943969727, + "relativeCreated": 84610.48793792725, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content True and Type is ).", - "asctime": "2023-02-09 15:58:18,790", + "asctime": "2023-02-15 07:14:47,606", "moduleLogger": [ { "name": "__unittest__", @@ -111766,15 +95350,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954698.7902138, - "msecs": 790.2138233184814, - "relativeCreated": 84686.4562034607, - "thread": 139894075555840, + "created": 1676441687.6067362, + "msecs": 606.7361831665039, + "relativeCreated": 84610.25142669678, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): True ()", - "asctime": "2023-02-09 15:58:18,790" + "asctime": "2023-02-15 07:14:47,606" }, { "name": "__unittest__", @@ -111795,18 +95379,18 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954698.7903285, - "msecs": 790.3285026550293, - "relativeCreated": 84686.57088279724, - "thread": 139894075555840, + "created": 1676441687.60686, + "msecs": 606.8599224090576, + "relativeCreated": 84610.37516593933, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = True ()", - "asctime": "2023-02-09 15:58:18,790" + "asctime": "2023-02-15 07:14:47,606" } ], - "time_consumption": 9.1552734375e-05 + "time_consumption": 0.00011277198791503906 }, { "name": "__tLogger__", @@ -111824,21 +95408,21 @@ "stack_info": null, "lineno": 42, "funcName": "__test_power_on_off__", - "created": 1675954699.092641, - "msecs": 92.64111518859863, - "relativeCreated": 84988.88349533081, - "thread": 139894075555840, + "created": 1676441687.90832, + "msecs": 908.3199501037598, + "relativeCreated": 84911.83519363403, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Changing virtual device state to 'False'", - "asctime": "2023-02-09 15:58:19,092", + "asctime": "2023-02-15 07:14:47,908", "moduleLogger": [ { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", + "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state.set", "msg": "Sending message with topic %s and payload %s", "args": [ - "videv/stw/stairway/main_light/state", + "videv/stw/stairway/main_light/state/set", "false" ], "levelname": "DEBUG", @@ -111851,42 +95435,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954698.7907054, - "msecs": 790.7054424285889, - "relativeCreated": 84686.9478225708, - "thread": 139894075555840, + "created": 1676441687.607284, + "msecs": 607.2840690612793, + "relativeCreated": 84610.79931259155, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, - "message": "Sending message with topic videv/stw/stairway/main_light/state and payload false", - "asctime": "2023-02-09 15:58:18,790" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.791805, - "msecs": 791.8050289154053, - "relativeCreated": 84688.04740905762, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:18,791" + "process": 509276, + "message": "Sending message with topic videv/stw/stairway/main_light/state/set and payload false", + "asctime": "2023-02-15 07:14:47,607" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0.command", @@ -111905,15 +95462,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.7933617, - "msecs": 793.3616638183594, - "relativeCreated": 84689.60404396057, - "thread": 139894051313216, + "created": 1676441687.6107852, + "msecs": 610.7852458953857, + "relativeCreated": 84614.30048942566, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/stw/stairway/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:18,793" + "asctime": "2023-02-15 07:14:47,610" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0", @@ -111932,15 +95489,15 @@ "stack_info": null, "lineno": 75, "funcName": "send", - "created": 1675954698.79387, - "msecs": 793.8699722290039, - "relativeCreated": 84690.11235237122, - "thread": 139894051313216, + "created": 1676441687.6114519, + "msecs": 611.4518642425537, + "relativeCreated": 84614.96710777283, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Sending message with topic shellies/stw/stairway/main_light/relay/0 and payload off", - "asctime": "2023-02-09 15:58:18,793" + "asctime": "2023-02-15 07:14:47,611" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0", @@ -111959,15 +95516,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.794746, - "msecs": 794.745922088623, - "relativeCreated": 84690.98830223083, - "thread": 139894051313216, + "created": 1676441687.6125178, + "msecs": 612.5178337097168, + "relativeCreated": 84616.03307723999, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/stw/stairway/main_light/relay/0 and payload b'off'", - "asctime": "2023-02-09 15:58:18,794" + "asctime": "2023-02-15 07:14:47,612" }, { "name": "smart_brain.mqtt.shellies.stw.stairway.main_light.relay.0.command", @@ -111986,15 +95543,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.8381271, - "msecs": 838.1271362304688, - "relativeCreated": 84734.36951637268, - "thread": 139894051313216, + "created": 1676441687.6554933, + "msecs": 655.4932594299316, + "relativeCreated": 84659.0085029602, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic shellies/stw/stairway/main_light/relay/0/command and payload b'off'", - "asctime": "2023-02-09 15:58:18,838" + "asctime": "2023-02-15 07:14:47,655" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", @@ -112013,42 +95570,15 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.8388934, - "msecs": 838.8934135437012, - "relativeCreated": 84735.13579368591, - "thread": 139894051313216, + "created": 1676441687.6565604, + "msecs": 656.5604209899902, + "relativeCreated": 84660.07566452026, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'0'", - "asctime": "2023-02-09 15:58:18,838" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/__info__", - "b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.8395193, - "msecs": 839.5192623138428, - "relativeCreated": 84735.76164245605, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:18,839" + "asctime": "2023-02-15 07:14:47,656" }, { "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", @@ -112067,45 +95597,18 @@ "stack_info": null, "lineno": 91, "funcName": "__receive__", - "created": 1675954698.840071, - "msecs": 840.0709629058838, - "relativeCreated": 84736.3133430481, - "thread": 139894051313216, + "created": 1676441687.699516, + "msecs": 699.5160579681396, + "relativeCreated": 84703.03130149841, + "thread": 140246884292160, "threadName": "Thread-1 (_thread_main)", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "asctime": "2023-02-09 15:58:18,840" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/__info__", - "b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/my_repositories/smarthome/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_info": null, - "exc_text": null, - "stack_info": null, - "lineno": 91, - "funcName": "__receive__", - "created": 1675954698.840635, - "msecs": 840.6350612640381, - "relativeCreated": 84736.87744140625, - "thread": 139894051313216, - "threadName": "Thread-1 (_thread_main)", - "processName": "MainProcess", - "process": 59129, - "message": "Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{\"__type__\": \"videv_switching_motion\", \"state\": {\"control\": true, \"display\": true}, \"timer\": {\"display\": true}, \"motion_0\": {\"display\": true}, \"motion_1\": {\"display\": true}}'", - "asctime": "2023-02-09 15:58:18,840" + "asctime": "2023-02-15 07:14:47,699" } ], - "time_consumption": 0.25200605392456055 + "time_consumption": 0.20880389213562012 }, { "name": "__tLogger__", @@ -112124,15 +95627,15 @@ "stack_info": null, "lineno": 184, "funcName": "equivalency_chk", - "created": 1675954699.093295, - "msecs": 93.29509735107422, - "relativeCreated": 84989.53747749329, - "thread": 139894075555840, + "created": 1676441687.9091496, + "msecs": 909.1496467590332, + "relativeCreated": 84912.6648902893, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Switching device state is correct (Content False and Type is ).", - "asctime": "2023-02-09 15:58:19,093", + "asctime": "2023-02-15 07:14:47,909", "moduleLogger": [ { "name": "__unittest__", @@ -112152,15 +95655,15 @@ "stack_info": null, "lineno": 22, "funcName": "__report_result__", - "created": 1675954699.093011, - "msecs": 93.01090240478516, - "relativeCreated": 84989.253282547, - "thread": 139894075555840, + "created": 1676441687.9088385, + "msecs": 908.8385105133057, + "relativeCreated": 84912.35375404358, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Result (Switching device state): False ()", - "asctime": "2023-02-09 15:58:19,093" + "asctime": "2023-02-15 07:14:47,908" }, { "name": "__unittest__", @@ -112181,23 +95684,23 @@ "stack_info": null, "lineno": 26, "funcName": "__report_expectation__", - "created": 1675954699.0931652, - "msecs": 93.16515922546387, - "relativeCreated": 84989.40753936768, - "thread": 139894075555840, + "created": 1676441687.9090106, + "msecs": 909.010648727417, + "relativeCreated": 84912.52589225769, + "thread": 140246908178432, "threadName": "MainThread", "processName": "MainProcess", - "process": 59129, + "process": 509276, "message": "Expectation (Switching device state): result = False ()", - "asctime": "2023-02-09 15:58:19,093" + "asctime": "2023-02-15 07:14:47,909" } ], - "time_consumption": 0.00012993812561035156 + "time_consumption": 0.00013899803161621094 } ], - "time_consumption": 1.2108855247497559, - "time_start": "2023-02-09 15:58:17,882", - "time_finished": "2023-02-09 15:58:19,093" + "time_consumption": 1.210188865661621, + "time_start": "2023-02-15 07:14:46,698", + "time_finished": "2023-02-15 07:14:47,909" } }, "uid_list_sorted": [ @@ -112282,14 +95785,14 @@ "testobject_information": { "app_name": "smart_brain", "version": { - "readable": "1.0.1", + "readable": "1.2.0", "major": 1, - "minor": 0, - "patch": 1 + "minor": 2, + "patch": 0 }, "git": { "url": "https://git.mount-mockery.de/smarthome/smart_brain.git", - "ref": "0b74ff04c9f3cb8c2608c2bcc2ba7759195ea5f8" + "ref": "f3ed72974e5fd3bf932ab78acdf0a1d6154dd733" } } } \ No newline at end of file diff --git a/testresults/testrun.pdf b/testresults/testrun.pdf index 721aace..7be36c8 100644 Binary files a/testresults/testrun.pdf and b/testresults/testrun.pdf differ diff --git a/testresults/testrun.tex b/testresults/testrun.tex index ea9abf4..6d56660 100644 --- a/testresults/testrun.tex +++ b/testresults/testrun.tex @@ -126,9 +126,9 @@ Path & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbre {\bf Test object Information} & \\ \midrule Test Object Name & smart\_brain \\ -Test Object Vesion & 1.0.1 \\ +Test Object Vesion & 1.2.0 \\ GIT repository & https:/\allowbreak /\allowbreak git.mount-mockery.de/\allowbreak smarthome/\allowbreak smart\_brain.git\\ -GIT reference & 0b74ff04c9f3cb8c2608c2bcc2ba7759195ea5f8\\ +GIT reference & f3ed72974e5fd3bf932ab78acdf0a1d6154dd733\\ \bottomrule \end{tabu} @@ -142,7 +142,7 @@ GIT reference & 0b74ff04c9f3cb8c2608c2bcc2ba7759195ea5f8\\ Number of failed tests & \textcolor{black}{\bf 0}\\ \midrule Executionlevel & Full Test (all defined tests)\\ - Time consumption & 84.730s\\ + Time consumption & 84.664s\\ \bottomrule \end{tabu} @@ -162,9 +162,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:56:54,326\\ -Finished-Time: & 2023-02-09 15:56:55,536\\ -Time-Consumption & 1.210s\\ +Start-Time: & 2023-02-15 07:13:23,206\\ +Finished-Time: & 2023-02-15 07:13:24,415\\ +Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -198,9 +198,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:56:55,537\\ -Finished-Time: & 2023-02-09 15:56:56,745\\ -Time-Consumption & 1.209s\\ +Start-Time: & 2023-02-15 07:13:24,416\\ +Finished-Time: & 2023-02-15 07:13:25,627\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -234,9 +234,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (24)\\ -Start-Time: & 2023-02-09 15:56:56,746\\ -Finished-Time: & 2023-02-09 15:56:57,652\\ -Time-Consumption & 0.906s\\ +Start-Time: & 2023-02-15 07:13:25,627\\ +Finished-Time: & 2023-02-15 07:13:26,532\\ +Time-Consumption & 0.905s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -263,8 +263,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:56:57,652\\ -Finished-Time: & 2023-02-09 15:56:58,862\\ +Start-Time: & 2023-02-15 07:13:26,533\\ +Finished-Time: & 2023-02-15 07:13:27,743\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -299,9 +299,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:56:58,863\\ -Finished-Time: & 2023-02-09 15:57:00,073\\ -Time-Consumption & 1.211s\\ +Start-Time: & 2023-02-15 07:13:27,744\\ +Finished-Time: & 2023-02-15 07:13:28,953\\ +Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -335,8 +335,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:00,074\\ -Finished-Time: & 2023-02-09 15:57:01,284\\ +Start-Time: & 2023-02-15 07:13:28,954\\ +Finished-Time: & 2023-02-15 07:13:30,164\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -371,9 +371,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:01,284\\ -Finished-Time: & 2023-02-09 15:57:03,099\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:13:30,165\\ +Finished-Time: & 2023-02-15 07:13:31,978\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -409,9 +409,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:03,100\\ -Finished-Time: & 2023-02-09 15:57:04,915\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:13:31,979\\ +Finished-Time: & 2023-02-15 07:13:33,792\\ +Time-Consumption & 1.813s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -447,8 +447,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:04,915\\ -Finished-Time: & 2023-02-09 15:57:06,127\\ +Start-Time: & 2023-02-15 07:13:33,793\\ +Finished-Time: & 2023-02-15 07:13:35,004\\ Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -483,9 +483,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:06,127\\ -Finished-Time: & 2023-02-09 15:57:07,940\\ -Time-Consumption & 1.813s\\ +Start-Time: & 2023-02-15 07:13:35,005\\ +Finished-Time: & 2023-02-15 07:13:36,817\\ +Time-Consumption & 1.812s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -521,9 +521,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:07,941\\ -Finished-Time: & 2023-02-09 15:57:09,755\\ -Time-Consumption & 1.813s\\ +Start-Time: & 2023-02-15 07:13:36,818\\ +Finished-Time: & 2023-02-15 07:13:38,632\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -559,9 +559,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:09,755\\ -Finished-Time: & 2023-02-09 15:57:10,967\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:13:38,632\\ +Finished-Time: & 2023-02-15 07:13:39,843\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -595,9 +595,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (42)\\ -Start-Time: & 2023-02-09 15:57:10,968\\ -Finished-Time: & 2023-02-09 15:57:12,180\\ -Time-Consumption & 1.213s\\ +Start-Time: & 2023-02-15 07:13:39,844\\ +Finished-Time: & 2023-02-15 07:13:41,055\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -635,9 +635,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (67)\\ -Start-Time: & 2023-02-09 15:57:12,181\\ -Finished-Time: & 2023-02-09 15:57:13,393\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:13:41,056\\ +Finished-Time: & 2023-02-15 07:13:42,266\\ +Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -675,9 +675,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (24)\\ -Start-Time: & 2023-02-09 15:57:13,393\\ -Finished-Time: & 2023-02-09 15:57:14,303\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:13:42,267\\ +Finished-Time: & 2023-02-15 07:13:43,177\\ +Time-Consumption & 0.910s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -714,9 +714,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:14,303\\ -Finished-Time: & 2023-02-09 15:57:16,119\\ -Time-Consumption & 1.816s\\ +Start-Time: & 2023-02-15 07:13:43,177\\ +Finished-Time: & 2023-02-15 07:13:44,990\\ +Time-Consumption & 1.812s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -752,9 +752,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:16,120\\ -Finished-Time: & 2023-02-09 15:57:17,332\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:13:44,990\\ +Finished-Time: & 2023-02-15 07:13:46,199\\ +Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -788,8 +788,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:17,333\\ -Finished-Time: & 2023-02-09 15:57:18,542\\ +Start-Time: & 2023-02-15 07:13:46,200\\ +Finished-Time: & 2023-02-15 07:13:47,410\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -824,9 +824,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (101)\\ -Start-Time: & 2023-02-09 15:57:18,543\\ -Finished-Time: & 2023-02-09 15:57:19,452\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:13:47,411\\ +Finished-Time: & 2023-02-15 07:13:48,318\\ +Time-Consumption & 0.908s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -856,9 +856,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (128)\\ -Start-Time: & 2023-02-09 15:57:19,452\\ -Finished-Time: & 2023-02-09 15:57:20,360\\ -Time-Consumption & 0.908s\\ +Start-Time: & 2023-02-15 07:13:48,319\\ +Finished-Time: & 2023-02-15 07:13:49,225\\ +Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -886,9 +886,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (50)\\ -Start-Time: & 2023-02-09 15:57:20,361\\ -Finished-Time: & 2023-02-09 15:57:20,966\\ -Time-Consumption & 0.606s\\ +Start-Time: & 2023-02-15 07:13:49,225\\ +Finished-Time: & 2023-02-15 07:13:49,830\\ +Time-Consumption & 0.604s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -914,9 +914,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (74)\\ -Start-Time: & 2023-02-09 15:57:20,967\\ -Finished-Time: & 2023-02-09 15:57:21,876\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:13:49,830\\ +Finished-Time: & 2023-02-15 07:13:50,738\\ +Time-Consumption & 0.908s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -946,9 +946,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (22)\\ -Start-Time: & 2023-02-09 15:57:21,877\\ -Finished-Time: & 2023-02-09 15:57:23,087\\ -Time-Consumption & 1.211s\\ +Start-Time: & 2023-02-15 07:13:50,738\\ +Finished-Time: & 2023-02-15 07:13:51,949\\ +Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -982,9 +982,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:23,088\\ -Finished-Time: & 2023-02-09 15:57:24,906\\ -Time-Consumption & 1.818s\\ +Start-Time: & 2023-02-15 07:13:51,949\\ +Finished-Time: & 2023-02-15 07:13:53,764\\ +Time-Consumption & 1.815s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1020,9 +1020,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:24,906\\ -Finished-Time: & 2023-02-09 15:57:26,721\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:13:53,764\\ +Finished-Time: & 2023-02-15 07:13:55,578\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1058,9 +1058,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:26,722\\ -Finished-Time: & 2023-02-09 15:57:27,934\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:13:55,579\\ +Finished-Time: & 2023-02-15 07:13:56,789\\ +Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1094,9 +1094,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (101)\\ -Start-Time: & 2023-02-09 15:57:27,935\\ -Finished-Time: & 2023-02-09 15:57:28,844\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:13:56,790\\ +Finished-Time: & 2023-02-15 07:13:57,697\\ +Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1126,9 +1126,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (128)\\ -Start-Time: & 2023-02-09 15:57:28,845\\ -Finished-Time: & 2023-02-09 15:57:29,752\\ -Time-Consumption & 0.908s\\ +Start-Time: & 2023-02-15 07:13:57,698\\ +Finished-Time: & 2023-02-15 07:13:58,604\\ +Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1156,9 +1156,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (50)\\ -Start-Time: & 2023-02-09 15:57:29,753\\ -Finished-Time: & 2023-02-09 15:57:30,359\\ -Time-Consumption & 0.606s\\ +Start-Time: & 2023-02-15 07:13:58,605\\ +Finished-Time: & 2023-02-15 07:13:59,209\\ +Time-Consumption & 0.604s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1184,9 +1184,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (74)\\ -Start-Time: & 2023-02-09 15:57:30,359\\ -Finished-Time: & 2023-02-09 15:57:31,267\\ -Time-Consumption & 0.908s\\ +Start-Time: & 2023-02-15 07:13:59,210\\ +Finished-Time: & 2023-02-15 07:14:00,116\\ +Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1216,9 +1216,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (22)\\ -Start-Time: & 2023-02-09 15:57:31,268\\ -Finished-Time: & 2023-02-09 15:57:32,480\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:14:00,116\\ +Finished-Time: & 2023-02-15 07:14:01,327\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1252,9 +1252,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:32,481\\ -Finished-Time: & 2023-02-09 15:57:34,297\\ -Time-Consumption & 1.817s\\ +Start-Time: & 2023-02-15 07:14:01,327\\ +Finished-Time: & 2023-02-15 07:14:03,140\\ +Time-Consumption & 1.813s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1290,9 +1290,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:34,298\\ -Finished-Time: & 2023-02-09 15:57:36,115\\ -Time-Consumption & 1.817s\\ +Start-Time: & 2023-02-15 07:14:03,141\\ +Finished-Time: & 2023-02-15 07:14:04,956\\ +Time-Consumption & 1.815s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1328,9 +1328,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:36,116\\ -Finished-Time: & 2023-02-09 15:57:37,326\\ -Time-Consumption & 1.210s\\ +Start-Time: & 2023-02-15 07:14:04,956\\ +Finished-Time: & 2023-02-15 07:14:06,165\\ +Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1364,9 +1364,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:37,326\\ -Finished-Time: & 2023-02-09 15:57:39,139\\ -Time-Consumption & 1.813s\\ +Start-Time: & 2023-02-15 07:14:06,166\\ +Finished-Time: & 2023-02-15 07:14:07,980\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1402,9 +1402,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:39,140\\ -Finished-Time: & 2023-02-09 15:57:40,954\\ -Time-Consumption & 1.814s\\ +Start-Time: & 2023-02-15 07:14:07,980\\ +Finished-Time: & 2023-02-15 07:14:09,794\\ +Time-Consumption & 1.813s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1440,8 +1440,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:40,955\\ -Finished-Time: & 2023-02-09 15:57:42,165\\ +Start-Time: & 2023-02-15 07:14:09,794\\ +Finished-Time: & 2023-02-15 07:14:11,003\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1476,8 +1476,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:42,165\\ -Finished-Time: & 2023-02-09 15:57:43,979\\ +Start-Time: & 2023-02-15 07:14:11,004\\ +Finished-Time: & 2023-02-15 07:14:12,817\\ Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1514,8 +1514,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:43,980\\ -Finished-Time: & 2023-02-09 15:57:45,191\\ +Start-Time: & 2023-02-15 07:14:12,818\\ +Finished-Time: & 2023-02-15 07:14:14,029\\ Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1550,8 +1550,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:45,191\\ -Finished-Time: & 2023-02-09 15:57:46,401\\ +Start-Time: & 2023-02-15 07:14:14,030\\ +Finished-Time: & 2023-02-15 07:14:15,240\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1586,9 +1586,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:46,401\\ -Finished-Time: & 2023-02-09 15:57:47,613\\ -Time-Consumption & 1.211s\\ +Start-Time: & 2023-02-15 07:14:15,240\\ +Finished-Time: & 2023-02-15 07:14:16,448\\ +Time-Consumption & 1.207s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1622,8 +1622,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (24)\\ -Start-Time: & 2023-02-09 15:57:47,613\\ -Finished-Time: & 2023-02-09 15:57:48,519\\ +Start-Time: & 2023-02-15 07:14:16,448\\ +Finished-Time: & 2023-02-15 07:14:17,354\\ Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1651,8 +1651,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:48,520\\ -Finished-Time: & 2023-02-09 15:57:50,334\\ +Start-Time: & 2023-02-15 07:14:17,354\\ +Finished-Time: & 2023-02-15 07:14:19,168\\ Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1689,8 +1689,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:50,334\\ -Finished-Time: & 2023-02-09 15:57:52,148\\ +Start-Time: & 2023-02-15 07:14:19,169\\ +Finished-Time: & 2023-02-15 07:14:20,983\\ Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1727,8 +1727,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:52,149\\ -Finished-Time: & 2023-02-09 15:57:53,360\\ +Start-Time: & 2023-02-15 07:14:20,984\\ +Finished-Time: & 2023-02-15 07:14:22,195\\ Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1763,8 +1763,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (101)\\ -Start-Time: & 2023-02-09 15:57:53,361\\ -Finished-Time: & 2023-02-09 15:57:54,268\\ +Start-Time: & 2023-02-15 07:14:22,196\\ +Finished-Time: & 2023-02-15 07:14:23,102\\ Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1795,16 +1795,16 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (128)\\ -Start-Time: & 2023-02-09 15:57:54,269\\ -Finished-Time: & 2023-02-09 15:57:55,176\\ -Time-Consumption & 0.907s\\ +Start-Time: & 2023-02-15 07:14:23,103\\ +Finished-Time: & 2023-02-15 07:14:24,009\\ +Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule \bf{\,Info } & Setting preconditions (Default setpoint)\\ \bf{\,\textcolor{green}{Success} } & Boost timer is correct (Content 0 and Type is $<$class 'int'$>$).\\ \bf{\,Info } & Activating boost mode\\ -\bf{\,\textcolor{green}{Success} } & Boost timer is greater expectation (Content 900 and Type is $<$class 'int'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Boost timer is greater expectation (Content 899 and Type is $<$class 'int'$>$).\\ \bf{\,Info } & Setting postconditions (Default setpoint)\\ \bf{\,\textcolor{green}{Success} } & Boost timer is correct (Content 0 and Type is $<$class 'int'$>$).\\ \bottomrule @@ -1825,9 +1825,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (50)\\ -Start-Time: & 2023-02-09 15:57:55,176\\ -Finished-Time: & 2023-02-09 15:57:55,781\\ -Time-Consumption & 0.605s\\ +Start-Time: & 2023-02-15 07:14:24,010\\ +Finished-Time: & 2023-02-15 07:14:24,613\\ +Time-Consumption & 0.603s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1853,8 +1853,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (74)\\ -Start-Time: & 2023-02-09 15:57:55,782\\ -Finished-Time: & 2023-02-09 15:57:56,689\\ +Start-Time: & 2023-02-15 07:14:24,613\\ +Finished-Time: & 2023-02-15 07:14:25,520\\ Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1885,9 +1885,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (22)\\ -Start-Time: & 2023-02-09 15:57:56,690\\ -Finished-Time: & 2023-02-09 15:57:57,899\\ -Time-Consumption & 1.210s\\ +Start-Time: & 2023-02-15 07:14:25,521\\ +Finished-Time: & 2023-02-15 07:14:26,730\\ +Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1921,9 +1921,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:57,900\\ -Finished-Time: & 2023-02-09 15:57:59,715\\ -Time-Consumption & 1.816s\\ +Start-Time: & 2023-02-15 07:14:26,730\\ +Finished-Time: & 2023-02-15 07:14:28,545\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1959,9 +1959,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:59,716\\ -Finished-Time: & 2023-02-09 15:58:01,529\\ -Time-Consumption & 1.813s\\ +Start-Time: & 2023-02-15 07:14:28,545\\ +Finished-Time: & 2023-02-15 07:14:30,359\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1997,9 +1997,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:01,530\\ -Finished-Time: & 2023-02-09 15:58:02,741\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:14:30,360\\ +Finished-Time: & 2023-02-15 07:14:31,571\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2033,9 +2033,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:02,742\\ -Finished-Time: & 2023-02-09 15:58:03,952\\ -Time-Consumption & 1.210s\\ +Start-Time: & 2023-02-15 07:14:31,571\\ +Finished-Time: & 2023-02-15 07:14:32,782\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2069,9 +2069,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:58:03,953\\ -Finished-Time: & 2023-02-09 15:58:05,768\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:14:32,783\\ +Finished-Time: & 2023-02-15 07:14:34,596\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2107,9 +2107,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:58:05,768\\ -Finished-Time: & 2023-02-09 15:58:07,583\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:14:34,597\\ +Finished-Time: & 2023-02-15 07:14:36,410\\ +Time-Consumption & 1.813s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2145,8 +2145,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:07,584\\ -Finished-Time: & 2023-02-09 15:58:08,795\\ +Start-Time: & 2023-02-15 07:14:36,411\\ +Finished-Time: & 2023-02-15 07:14:37,621\\ Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -2181,9 +2181,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (42)\\ -Start-Time: & 2023-02-09 15:58:08,795\\ -Finished-Time: & 2023-02-09 15:58:10,004\\ -Time-Consumption & 1.208s\\ +Start-Time: & 2023-02-15 07:14:37,622\\ +Finished-Time: & 2023-02-15 07:14:38,830\\ +Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2213,8 +2213,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (67)\\ -Start-Time: & 2023-02-09 15:58:10,004\\ -Finished-Time: & 2023-02-09 15:58:11,214\\ +Start-Time: & 2023-02-15 07:14:38,831\\ +Finished-Time: & 2023-02-15 07:14:40,040\\ Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -2245,8 +2245,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (24)\\ -Start-Time: & 2023-02-09 15:58:11,214\\ -Finished-Time: & 2023-02-09 15:58:12,121\\ +Start-Time: & 2023-02-15 07:14:40,040\\ +Finished-Time: & 2023-02-15 07:14:40,947\\ Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -2276,9 +2276,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (101)\\ -Start-Time: & 2023-02-09 15:58:12,122\\ -Finished-Time: & 2023-02-09 15:58:13,031\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:14:40,948\\ +Finished-Time: & 2023-02-15 07:14:41,855\\ +Time-Consumption & 0.908s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2308,16 +2308,16 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (128)\\ -Start-Time: & 2023-02-09 15:58:13,031\\ -Finished-Time: & 2023-02-09 15:58:13,940\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:14:41,856\\ +Finished-Time: & 2023-02-15 07:14:42,762\\ +Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule \bf{\,Info } & Setting preconditions (Default setpoint)\\ \bf{\,\textcolor{green}{Success} } & Boost timer is correct (Content 0 and Type is $<$class 'int'$>$).\\ \bf{\,Info } & Activating boost mode\\ -\bf{\,\textcolor{green}{Success} } & Boost timer is greater expectation (Content 899 and Type is $<$class 'int'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Boost timer is greater expectation (Content 900 and Type is $<$class 'int'$>$).\\ \bf{\,Info } & Setting postconditions (Default setpoint)\\ \bf{\,\textcolor{green}{Success} } & Boost timer is correct (Content 0 and Type is $<$class 'int'$>$).\\ \bottomrule @@ -2338,9 +2338,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (50)\\ -Start-Time: & 2023-02-09 15:58:13,940\\ -Finished-Time: & 2023-02-09 15:58:14,545\\ -Time-Consumption & 0.605s\\ +Start-Time: & 2023-02-15 07:14:42,763\\ +Finished-Time: & 2023-02-15 07:14:43,367\\ +Time-Consumption & 0.604s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2366,9 +2366,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (74)\\ -Start-Time: & 2023-02-09 15:58:14,546\\ -Finished-Time: & 2023-02-09 15:58:15,455\\ -Time-Consumption & 0.910s\\ +Start-Time: & 2023-02-15 07:14:43,368\\ +Finished-Time: & 2023-02-15 07:14:44,275\\ +Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2398,9 +2398,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (22)\\ -Start-Time: & 2023-02-09 15:58:15,456\\ -Finished-Time: & 2023-02-09 15:58:16,668\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:14:44,275\\ +Finished-Time: & 2023-02-15 07:14:45,486\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2434,9 +2434,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:16,668\\ -Finished-Time: & 2023-02-09 15:58:17,881\\ -Time-Consumption & 1.213s\\ +Start-Time: & 2023-02-15 07:14:45,487\\ +Finished-Time: & 2023-02-15 07:14:46,698\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2470,9 +2470,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:17,882\\ -Finished-Time: & 2023-02-09 15:58:19,093\\ -Time-Consumption & 1.211s\\ +Start-Time: & 2023-02-15 07:14:46,698\\ +Finished-Time: & 2023-02-15 07:14:47,909\\ +Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule diff --git a/testresults/testrun_full.pdf b/testresults/testrun_full.pdf index 4bb4f4e..57382fc 100644 Binary files a/testresults/testrun_full.pdf and b/testresults/testrun_full.pdf differ diff --git a/testresults/testrun_full.tex b/testresults/testrun_full.tex index 5a704b8..4a9c039 100644 --- a/testresults/testrun_full.tex +++ b/testresults/testrun_full.tex @@ -126,9 +126,9 @@ Path & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbre {\bf Test object Information} & \\ \midrule Test Object Name & smart\_brain \\ -Test Object Vesion & 1.0.1 \\ +Test Object Vesion & 1.2.0 \\ GIT repository & https:/\allowbreak /\allowbreak git.mount-mockery.de/\allowbreak smarthome/\allowbreak smart\_brain.git\\ -GIT reference & 0b74ff04c9f3cb8c2608c2bcc2ba7759195ea5f8\\ +GIT reference & f3ed72974e5fd3bf932ab78acdf0a1d6154dd733\\ \bottomrule \end{tabu} @@ -142,7 +142,7 @@ GIT reference & 0b74ff04c9f3cb8c2608c2bcc2ba7759195ea5f8\\ Number of failed tests & \textcolor{black}{\bf 0}\\ \midrule Executionlevel & Full Test (all defined tests)\\ - Time consumption & 84.730s\\ + Time consumption & 84.664s\\ \bottomrule \end{tabu} @@ -162,290 +162,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:56:54,326\\ -Finished-Time: & 2023-02-09 15:56:55,536\\ -Time-Consumption & 1.210s\\ -\midrule -\multicolumn{2}{l}{\bf{Testresults:}}\\ -\midrule -\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ -\bf{\,Info } & Changing switching device state to 'True'\\ -\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ -\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ -\bf{\,Info } & Changing virtual device state to 'False'\\ -\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ -\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ -\bf{\,Info } & Changing switching device state to 'True'\\ -\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ -\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ -\bf{\,Info } & Changing virtual device state to 'False'\\ -\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ -\bottomrule -\end{longtabu} - - -\paragraph{Testdetails}\mbox{}\\ - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Virtual device state): False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Virtual device state): result = False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf Info } & Changing switching device state to 'True'\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic __info__ and payload b'null' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic __info__ and payload b'{"app_name": "smart_brain", "version": {"readable": "1.0.1", "major": 1, "minor": 0, "patch": 1}, "git": {"url": "https://git.mount-mockery.de/smarthome/smart_brain.git", "ref": "0b74ff04c9f3cb8c2608c2bcc2ba7759195ea5f8"}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Virtual device state): True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Virtual device state): result = True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Switching device state): True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Switching device state): result = True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf Info } & Changing virtual device state to 'False'\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/diningroom/floorlamp/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{"state": "off"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Switching device state): False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Switching device state): result = False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Virtual device state): False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Virtual device state): result = False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf Info } & Changing switching device state to 'True'\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Virtual device state): True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Virtual device state): result = True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Switching device state): True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Switching device state): result = True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf Info } & Changing virtual device state to 'False'\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/diningroom/floorlamp/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{"state": "off"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Switching device state): False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Switching device state): result = False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - - - - - - - - \subsection{ Power On/\allowbreak Off test for device and virtual device: shellies/\allowbreak ffe/\allowbreak diningroom/\allowbreak main\_light } - - -\paragraph{Testsummary}\mbox{}\\ -This test was passed with the state: {\bf \textcolor{green}{Success}}. -\begin{longtabu} to \linewidth {lX} -\toprule -Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:56:55,537\\ -Finished-Time: & 2023-02-09 15:56:56,745\\ +Start-Time: & 2023-02-15 07:13:23,206\\ +Finished-Time: & 2023-02-15 07:13:24,415\\ Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -488,41 +206,49 @@ Time-Consumption & 1.209s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "on"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on' + Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"state": "off"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{"state": "on"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"state": "off"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on + Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"state": "off"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/main_light/state and payload b'true' + Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"state": "off"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on' + Received message with topic videv/stw/stairway/main_light/state and payload b'false' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic __info__ and payload b'null' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "on"}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic __info__ and payload b'{"app_name": "smart_brain", "version": {"readable": "1.2.0", "major": 1, "minor": 2, "patch": 0}, "git": {"url": "https://git.mount-mockery.de/smarthome/smart_brain.git", "ref": "f3ed72974e5fd3bf932ab78acdf0a1d6154dd733"}}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -561,11 +287,273 @@ Time-Consumption & 1.209s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/diningroom/main_light/state and payload false + Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/main_light/state and payload b'false' + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{"state": "off"}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "off"} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "off"}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Switching device state): False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Switching device state): result = False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Virtual device state): False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Virtual device state): result = False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf Info } & Changing switching device state to 'True'\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "on"} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "on"}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Virtual device state): True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Virtual device state): result = True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Switching device state): True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Switching device state): result = True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf Info } & Changing virtual device state to 'False'\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic videv/ffe/diningroom/floorlamp/state/set and payload false + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{"state": "off"}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "off"} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "off"}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Switching device state): False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Switching device state): result = False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + + + + + + + + \subsection{ Power On/\allowbreak Off test for device and virtual device: shellies/\allowbreak ffe/\allowbreak diningroom/\allowbreak main\_light } + + +\paragraph{Testsummary}\mbox{}\\ +This test was passed with the state: {\bf \textcolor{green}{Success}}. +\begin{longtabu} to \linewidth {lX} +\toprule +Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ +Start-Time: & 2023-02-15 07:13:24,416\\ +Finished-Time: & 2023-02-15 07:13:25,627\\ +Time-Consumption & 1.211s\\ +\midrule +\multicolumn{2}{l}{\bf{Testresults:}}\\ +\midrule +\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ +\bf{\,Info } & Changing switching device state to 'True'\\ +\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ +\bf{\,Info } & Changing virtual device state to 'False'\\ +\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ +\bf{\,Info } & Changing switching device state to 'True'\\ +\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ +\bf{\,Info } & Changing virtual device state to 'False'\\ +\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ +\bottomrule +\end{longtabu} + + +\paragraph{Testdetails}\mbox{}\\ + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Virtual device state): False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Virtual device state): result = False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf Info } & Changing switching device state to 'True'\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic shellies/ffe/diningroom/main_light/relay/0 and payload on + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic shellies/ffe/diningroom/main_light/relay/0 and payload b'on' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/set and payload b'{"state": "on"}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "on"} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/ffe/diningroom/main_light/state and payload b'true' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "on"}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Virtual device state): True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Virtual device state): result = True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Switching device state): True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Switching device state): result = True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf Info } & Changing virtual device state to 'False'\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic videv/ffe/diningroom/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -585,7 +573,7 @@ Time-Consumption & 1.209s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "off"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -593,21 +581,13 @@ Time-Consumption & 1.209s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off' + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "off"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -658,7 +638,7 @@ Time-Consumption & 1.209s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "on"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -666,21 +646,13 @@ Time-Consumption & 1.209s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on' + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "on"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -719,11 +691,7 @@ Time-Consumption & 1.209s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/diningroom/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/main_light/state and payload b'false' + Sending message with topic videv/ffe/diningroom/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -743,7 +711,7 @@ Time-Consumption & 1.209s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "off"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -751,21 +719,13 @@ Time-Consumption & 1.209s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off' + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "off"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -798,9 +758,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (24)\\ -Start-Time: & 2023-02-09 15:56:56,746\\ -Finished-Time: & 2023-02-09 15:56:57,652\\ -Time-Consumption & 0.906s\\ +Start-Time: & 2023-02-15 07:13:25,627\\ +Finished-Time: & 2023-02-15 07:13:26,532\\ +Time-Consumption & 0.905s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -839,7 +799,7 @@ Time-Consumption & 0.906s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload on + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "on"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -847,21 +807,13 @@ Time-Consumption & 0.906s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'on' + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "on"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -897,7 +849,7 @@ Time-Consumption & 0.906s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload off + Sending message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload {"state": "off"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -905,21 +857,13 @@ Time-Consumption & 0.906s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp/state and payload b'off' + Received message with topic zigbee/ffe/diningroom/powerplug_floorlamp and payload b'{"state": "off"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/diningroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/diningroom/floorlamp/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -952,8 +896,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:56:57,652\\ -Finished-Time: & 2023-02-09 15:56:58,862\\ +Start-Time: & 2023-02-15 07:13:26,533\\ +Finished-Time: & 2023-02-15 07:13:27,743\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1007,10 +951,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffe/floor/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/floor/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1049,11 +989,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/floor/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/floor/main_light/state and payload b'false' + Sending message with topic videv/ffe/floor/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1072,10 +1008,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffe/floor/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/floor/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1125,10 +1057,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffe/floor/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/floor/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1167,11 +1095,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/floor/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/floor/main_light/state and payload b'false' + Sending message with topic videv/ffe/floor/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1190,10 +1114,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffe/floor/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/floor/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1226,9 +1146,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:56:58,863\\ -Finished-Time: & 2023-02-09 15:57:00,073\\ -Time-Consumption & 1.211s\\ +Start-Time: & 2023-02-15 07:13:27,744\\ +Finished-Time: & 2023-02-15 07:13:28,953\\ +Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1282,11 +1202,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{"__type__": "videv_switching_timer", "state": {"control": true, "display": true}, "timer": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'toggle' + Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1298,10 +1214,6 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{"__type__": "videv_switching_timer", "state": {"control": true, "display": true}, "timer": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -1309,10 +1221,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/ffe/kitchen/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1351,11 +1259,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/kitchen/circulation_pump/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false' + Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1387,25 +1291,13 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{"__type__": "videv_switching_timer", "state": {"control": true, "display": true}, "timer": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{"__type__": "videv_switching_timer", "state": {"control": true, "display": true}, "timer": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/kitchen/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1456,11 +1348,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{"__type__": "videv_switching_timer", "state": {"control": true, "display": true}, "timer": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'toggle' + Received message with topic shellies/ffe/kitchen/main_light/relay/0/command and payload b'on' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1472,10 +1360,6 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{"__type__": "videv_switching_timer", "state": {"control": true, "display": true}, "timer": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'on' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -1483,10 +1367,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/ffe/kitchen/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1525,19 +1405,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/kitchen/circulation_pump/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0/command and payload b'off' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload off + Sending message with topic videv/ffe/kitchen/circulation_pump/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1549,27 +1417,15 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'off' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic shellies/ffe/kitchen/main_light/relay/0 and payload b'off' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'0' + Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0/command and payload b'off' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{"__type__": "videv_switching_timer", "state": {"control": true, "display": true}, "timer": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/circulation_pump/__info__ and payload b'{"__type__": "videv_switching_timer", "state": {"control": true, "display": true}, "timer": {"display": true}}' + Sending message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload off \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1577,7 +1433,15 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' + Received message with topic shellies/ffe/kitchen/circulation_pump/relay/0 and payload b'off' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/ffe/kitchen/circulation_pump/timer and payload b'0' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/ffe/kitchen/circulation_pump/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -1612,8 +1476,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:00,074\\ -Finished-Time: & 2023-02-09 15:57:01,284\\ +Start-Time: & 2023-02-15 07:13:28,954\\ +Finished-Time: & 2023-02-15 07:13:30,164\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -1667,10 +1531,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffe/kitchen/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1709,11 +1569,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/kitchen/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/state and payload b'false' + Sending message with topic videv/ffe/kitchen/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1732,10 +1588,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffe/kitchen/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1785,10 +1637,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffe/kitchen/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1827,11 +1675,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/kitchen/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/state and payload b'false' + Sending message with topic videv/ffe/kitchen/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1850,10 +1694,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffe/kitchen/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/kitchen/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -1886,9 +1726,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:01,284\\ -Finished-Time: & 2023-02-09 15:57:03,099\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:13:30,165\\ +Finished-Time: & 2023-02-15 07:13:31,978\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -1917,11 +1757,11 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -1929,23 +1769,11 @@ Time-Consumption & 1.815s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -1971,19 +1799,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -2024,53 +1848,45 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/brightness and payload 50 + Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"brightness": 128}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -2109,19 +1925,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -2162,53 +1974,45 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/brightness and payload 50 + Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -2232,21 +2036,17 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -2264,9 +2064,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:03,100\\ -Finished-Time: & 2023-02-09 15:57:04,915\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:13:31,979\\ +Finished-Time: & 2023-02-15 07:13:33,792\\ +Time-Consumption & 1.813s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2295,21 +2095,17 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -2333,19 +2129,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -2386,53 +2178,45 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/color_temp and payload 5 + Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -2471,19 +2255,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -2524,53 +2304,45 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/color_temp and payload 5 + Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -2594,21 +2366,17 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -2626,8 +2394,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:04,915\\ -Finished-Time: & 2023-02-09 15:57:06,127\\ +Start-Time: & 2023-02-15 07:13:33,793\\ +Finished-Time: & 2023-02-15 07:13:35,004\\ Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -2670,21 +2438,17 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -2723,11 +2487,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' + Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -2735,7 +2495,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -2759,17 +2519,13 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -2808,21 +2564,17 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -2861,11 +2613,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' + Sending message with topic videv/ffe/livingroom/floorlamp/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -2873,7 +2621,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -2897,17 +2645,13 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -2940,9 +2684,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:06,127\\ -Finished-Time: & 2023-02-09 15:57:07,940\\ -Time-Consumption & 1.813s\\ +Start-Time: & 2023-02-15 07:13:35,005\\ +Finished-Time: & 2023-02-15 07:13:36,817\\ +Time-Consumption & 1.812s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -2975,7 +2719,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -2983,7 +2727,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -2991,7 +2735,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -2999,7 +2743,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3007,7 +2751,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3015,7 +2759,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3023,7 +2767,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3031,7 +2775,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3039,47 +2783,27 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50.0' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5.0' + Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3087,7 +2811,11 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -3113,19 +2841,15 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -3166,33 +2890,25 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/main_light/brightness and payload 50 + Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -3231,19 +2947,15 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -3284,33 +2996,25 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/main_light/brightness and payload 50 + Sending message with topic videv/ffe/livingroom/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -3346,7 +3050,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3354,7 +3058,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3362,7 +3066,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3370,7 +3074,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3378,7 +3082,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3386,7 +3090,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3394,41 +3098,33 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -3446,9 +3142,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:07,941\\ -Finished-Time: & 2023-02-09 15:57:09,755\\ -Time-Consumption & 1.813s\\ +Start-Time: & 2023-02-15 07:13:36,818\\ +Finished-Time: & 2023-02-15 07:13:38,632\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -3481,7 +3177,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3489,7 +3185,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3497,7 +3193,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3505,7 +3201,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3513,7 +3209,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3521,7 +3217,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3529,7 +3225,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3537,7 +3233,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3545,41 +3241,33 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -3603,19 +3291,15 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -3656,33 +3340,25 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/main_light/color_temp and payload 5 + Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -3721,19 +3397,15 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -3774,33 +3446,25 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/main_light/color_temp and payload 5 + Sending message with topic videv/ffe/livingroom/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -3836,7 +3500,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3844,15 +3508,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3860,7 +3516,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3868,7 +3524,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3876,7 +3532,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3884,7 +3540,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3892,33 +3548,33 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -3936,9 +3592,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:09,755\\ -Finished-Time: & 2023-02-09 15:57:10,967\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:13:38,632\\ +Finished-Time: & 2023-02-15 07:13:39,843\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -3984,7 +3640,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -3992,7 +3648,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4000,7 +3656,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4008,7 +3664,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4016,7 +3672,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4024,7 +3680,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4032,7 +3688,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4040,7 +3696,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4048,41 +3704,33 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -4121,11 +3769,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/state and payload b'false' + Sending message with topic videv/ffe/livingroom/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4145,7 +3789,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4153,7 +3797,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4161,7 +3805,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4169,7 +3813,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4177,7 +3821,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4185,7 +3829,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4193,41 +3837,33 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -4270,7 +3906,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4278,7 +3914,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4286,7 +3922,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4294,7 +3930,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4302,7 +3938,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4310,7 +3946,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4318,7 +3954,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4326,7 +3962,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4334,41 +3970,33 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -4407,11 +4035,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/state and payload b'false' + Sending message with topic videv/ffe/livingroom/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4431,7 +4055,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4439,7 +4063,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4447,7 +4071,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4455,7 +4079,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4463,7 +4087,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4471,7 +4095,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4479,41 +4103,33 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -4546,9 +4162,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (42)\\ -Start-Time: & 2023-02-09 15:57:10,968\\ -Finished-Time: & 2023-02-09 15:57:12,180\\ -Time-Consumption & 1.213s\\ +Start-Time: & 2023-02-15 07:13:39,844\\ +Finished-Time: & 2023-02-15 07:13:41,055\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -4583,7 +4199,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4591,7 +4207,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4599,7 +4215,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4607,7 +4223,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4615,7 +4231,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4623,7 +4239,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4631,7 +4247,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4639,7 +4255,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -4647,41 +4263,33 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -4690,93 +4298,85 @@ Time-Consumption & 1.213s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/brightness and payload 35 + Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 35 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"brightness": 90}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"brightness": 90}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"brightness": 90}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"brightness": 90}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"brightness": 90}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"brightness": 90}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'35' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"brightness": 90.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"brightness": 90.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"brightness": 90.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"brightness": 90.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"brightness": 90.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"brightness": 90.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'35.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -4875,93 +4475,85 @@ Time-Consumption & 1.213s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/brightness and payload 50 + Sending message with topic videv/ffe/livingroom/floorlamp/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -5072,7 +4664,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5080,7 +4672,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5088,7 +4680,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5096,7 +4688,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5104,7 +4696,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5112,7 +4704,7 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5120,41 +4712,33 @@ Time-Consumption & 1.213s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -5172,9 +4756,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (67)\\ -Start-Time: & 2023-02-09 15:57:12,181\\ -Finished-Time: & 2023-02-09 15:57:13,393\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:13:41,056\\ +Finished-Time: & 2023-02-15 07:13:42,266\\ +Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -5209,7 +4793,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5217,7 +4801,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5225,7 +4809,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5233,7 +4817,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5241,7 +4825,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5249,7 +4833,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5257,7 +4841,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5265,7 +4849,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5273,41 +4857,33 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -5316,93 +4892,85 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/color_temp and payload 2 + Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 2 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"color_temp": 291}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"color_temp": 291}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"color_temp": 291}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"color_temp": 291}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"color_temp": 291}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"color_temp": 291}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'2' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"color_temp": 291.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"color_temp": 291.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"color_temp": 291.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"color_temp": 291.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"color_temp": 291.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"color_temp": 291.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'2.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -5501,93 +5069,85 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/livingroom/floorlamp/color_temp and payload 5 + Sending message with topic videv/ffe/livingroom/floorlamp/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -5698,7 +5258,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5706,7 +5266,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5714,7 +5274,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5722,7 +5282,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5730,7 +5290,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5738,7 +5298,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5746,41 +5306,33 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -5798,9 +5350,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (24)\\ -Start-Time: & 2023-02-09 15:57:13,393\\ -Finished-Time: & 2023-02-09 15:57:14,303\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:13:42,267\\ +Finished-Time: & 2023-02-15 07:13:43,177\\ +Time-Consumption & 0.910s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -5841,7 +5393,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5849,7 +5401,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5857,7 +5409,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5865,7 +5417,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5873,7 +5425,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5881,7 +5433,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5889,7 +5441,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5897,7 +5449,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -5905,41 +5457,33 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -6050,7 +5594,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_1 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6058,7 +5602,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_2 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6066,7 +5610,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_3 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6074,7 +5618,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_4 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6082,7 +5626,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_5 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6090,7 +5634,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/livingroom/floorlamp_6 and payload {"state": "off", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6098,41 +5642,33 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_1 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_2 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_3 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_4 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_5 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/livingroom/floorlamp_6 and payload b'{"state": "off", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/livingroom/floorlamp/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/livingroom/floorlamp/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -6240,9 +5776,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:14,303\\ -Finished-Time: & 2023-02-09 15:57:16,119\\ -Time-Consumption & 1.816s\\ +Start-Time: & 2023-02-15 07:13:43,177\\ +Finished-Time: & 2023-02-15 07:13:44,990\\ +Time-Consumption & 1.812s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -6271,11 +5807,11 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6283,15 +5819,7 @@ Time-Consumption & 1.816s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' + Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -6317,19 +5845,15 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 165.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 165.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 165.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 165.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' + Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -6370,33 +5894,25 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/bed_light_di/brightness and payload 50 + Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -6435,19 +5951,15 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 165.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 165.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 165.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 165.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' + Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -6488,33 +6000,25 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/bed_light_di/brightness and payload 50 + Sending message with topic videv/ffe/sleep/bed_light_di/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -6538,21 +6042,17 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "off", "brightness": 127.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "off", "brightness": 127.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "off", "brightness": 127.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "off", "brightness": 127.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -6570,9 +6070,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:16,120\\ -Finished-Time: & 2023-02-09 15:57:17,332\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:13:44,990\\ +Finished-Time: & 2023-02-15 07:13:46,199\\ +Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -6614,21 +6114,17 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -6667,11 +6163,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/bed_light_di/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false' + Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6679,21 +6171,17 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "off", "brightness": 127.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "off", "brightness": 127.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "off", "brightness": 127.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "off", "brightness": 127.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -6732,21 +6220,17 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "on", "brightness": 127.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "on", "brightness": 127.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -6785,11 +6269,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/bed_light_di/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false' + Sending message with topic videv/ffe/sleep/bed_light_di/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6797,21 +6277,17 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "off", "brightness": 127.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/bed_light_di and payload {"state": "off", "brightness": 127.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "off", "brightness": 127.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/bed_light_di and payload b'{"state": "off", "brightness": 127.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_di/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_di/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -6844,8 +6320,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:17,333\\ -Finished-Time: & 2023-02-09 15:57:18,542\\ +Start-Time: & 2023-02-15 07:13:46,200\\ +Finished-Time: & 2023-02-15 07:13:47,410\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -6888,21 +6364,17 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_ma/state and payload on + Sending message with topic zigbee/ffe/sleep/bed_light_ma and payload {"state": "on"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_ma/state and payload b'on' + Received message with topic zigbee/ffe/sleep/bed_light_ma and payload b'{"state": "on"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_ma/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -6941,11 +6413,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/bed_light_ma/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false' + Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -6953,21 +6421,17 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_ma/state and payload off + Sending message with topic zigbee/ffe/sleep/bed_light_ma and payload {"state": "off"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_ma/state and payload b'off' + Received message with topic zigbee/ffe/sleep/bed_light_ma and payload b'{"state": "off"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_ma/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -7006,21 +6470,17 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_ma/state and payload on + Sending message with topic zigbee/ffe/sleep/bed_light_ma and payload {"state": "on"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_ma/state and payload b'on' + Received message with topic zigbee/ffe/sleep/bed_light_ma and payload b'{"state": "on"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_ma/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -7059,11 +6519,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/bed_light_ma/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false' + Sending message with topic videv/ffe/sleep/bed_light_ma/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7071,21 +6527,17 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/bed_light_ma/state and payload off + Sending message with topic zigbee/ffe/sleep/bed_light_ma and payload {"state": "off"} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/bed_light_ma/state and payload b'off' + Received message with topic zigbee/ffe/sleep/bed_light_ma and payload b'{"state": "off"}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/bed_light_ma/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/bed_light_ma/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -7118,9 +6570,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (101)\\ -Start-Time: & 2023-02-09 15:57:18,543\\ -Finished-Time: & 2023-02-09 15:57:19,452\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:13:47,411\\ +Finished-Time: & 2023-02-15 07:13:48,318\\ +Time-Consumption & 0.908s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -7143,11 +6595,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7155,15 +6603,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{"current_heating_setpoint": 21.5}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7171,19 +6615,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7209,11 +6641,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/away_mode and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'true' + Sending message with topic videv/ffe/sleep/heating_valve/away_mode/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7221,7 +6649,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 16.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 16.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7229,27 +6657,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 16.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 16.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7290,11 +6702,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/away_mode and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'false' + Sending message with topic videv/ffe/sleep/heating_valve/away_mode/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7302,7 +6710,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7310,27 +6718,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/heating_valve/away_mode and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7380,9 +6772,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (128)\\ -Start-Time: & 2023-02-09 15:57:19,452\\ -Finished-Time: & 2023-02-09 15:57:20,360\\ -Time-Consumption & 0.908s\\ +Start-Time: & 2023-02-15 07:13:48,319\\ +Finished-Time: & 2023-02-15 07:13:49,225\\ +Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -7403,11 +6795,7 @@ Time-Consumption & 0.908s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7433,11 +6821,7 @@ Time-Consumption & 0.908s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/start_boost and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/start_boost and payload b'true' + Sending message with topic videv/ffe/sleep/heating_valve/start_boost/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7445,15 +6829,11 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{"current_heating_setpoint": 30}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 30, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 30, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7461,19 +6841,7 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 30, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 30, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7499,11 +6867,7 @@ Time-Consumption & 0.908s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7511,15 +6875,11 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{"current_heating_setpoint": 21.5}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7527,19 +6887,7 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7574,9 +6922,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (50)\\ -Start-Time: & 2023-02-09 15:57:20,361\\ -Finished-Time: & 2023-02-09 15:57:20,966\\ -Time-Consumption & 0.606s\\ +Start-Time: & 2023-02-15 07:13:49,225\\ +Finished-Time: & 2023-02-15 07:13:49,830\\ +Time-Consumption & 0.604s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -7595,11 +6943,11 @@ Time-Consumption & 0.606s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 16.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 16.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 16.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 16.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7611,25 +6959,9 @@ Time-Consumption & 0.606s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'16.5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -7653,11 +6985,7 @@ Time-Consumption & 0.606s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7665,15 +6993,11 @@ Time-Consumption & 0.606s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/ffe/sleep/heating_valve/set and payload b'{"current_heating_setpoint": 21.5}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7681,19 +7005,7 @@ Time-Consumption & 0.606s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7728,9 +7040,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (74)\\ -Start-Time: & 2023-02-09 15:57:20,967\\ -Finished-Time: & 2023-02-09 15:57:21,876\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:13:49,830\\ +Finished-Time: & 2023-02-15 07:13:50,738\\ +Time-Consumption & 0.908s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -7753,11 +7065,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffe/sleep/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7783,11 +7091,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/summer_mode and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'true' + Sending message with topic videv/ffe/sleep/heating_valve/summer_mode/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7795,7 +7099,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7803,27 +7107,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7864,11 +7152,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/summer_mode and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'false' + Sending message with topic videv/ffe/sleep/heating_valve/summer_mode/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7876,7 +7160,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7884,27 +7168,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/heating_valve/summer_mode and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -7954,9 +7222,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (22)\\ -Start-Time: & 2023-02-09 15:57:21,877\\ -Finished-Time: & 2023-02-09 15:57:23,087\\ -Time-Consumption & 1.211s\\ +Start-Time: & 2023-02-15 07:13:50,738\\ +Finished-Time: & 2023-02-15 07:13:51,949\\ +Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -7983,11 +7251,11 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 16.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 16.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 16.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 16.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -7999,25 +7267,9 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'16.5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -8056,11 +7308,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload 21.5 - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5' + Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint/set and payload 21.5 \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -8068,7 +7316,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -8076,27 +7324,11 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -8137,11 +7369,11 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 16.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 16.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 16.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 16.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -8153,25 +7385,9 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'16.5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -8210,11 +7426,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload 21.5 - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5' + Sending message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint/set and payload 21.5 \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -8222,7 +7434,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffe/sleep/heating_valve and payload {"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -8230,27 +7442,11 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/heating_valve/user_temperature_setpoint and payload b'21.5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffe/sleep/heating_valve and payload b'{"current_heating_setpoint": 21.5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -8300,9 +7496,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:23,088\\ -Finished-Time: & 2023-02-09 15:57:24,906\\ -Time-Consumption & 1.818s\\ +Start-Time: & 2023-02-15 07:13:51,949\\ +Finished-Time: & 2023-02-15 07:13:53,764\\ +Time-Consumption & 1.815s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -8335,7 +7531,7 @@ Time-Consumption & 1.818s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -8343,7 +7539,7 @@ Time-Consumption & 1.818s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -8351,23 +7547,11 @@ Time-Consumption & 1.818s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -8393,19 +7577,15 @@ Time-Consumption & 1.818s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/sleep/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -8446,33 +7626,25 @@ Time-Consumption & 1.818s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/main_light/brightness and payload 50 + Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -8511,19 +7683,15 @@ Time-Consumption & 1.818s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/sleep/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -8564,33 +7732,25 @@ Time-Consumption & 1.818s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/main_light/brightness and payload 50 + Sending message with topic videv/ffe/sleep/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -8625,10 +7785,6 @@ Time-Consumption & 1.818s\\ Received message with topic videv/ffe/sleep/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -8646,9 +7802,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:24,906\\ -Finished-Time: & 2023-02-09 15:57:26,721\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:13:53,764\\ +Finished-Time: & 2023-02-15 07:13:55,578\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -8681,7 +7837,7 @@ Time-Consumption & 1.815s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -8689,17 +7845,13 @@ Time-Consumption & 1.815s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -8723,19 +7875,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -8776,33 +7924,25 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/main_light/color_temp and payload 5 + Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -8841,19 +7981,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -8894,33 +8030,25 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/main_light/color_temp and payload 5 + Sending message with topic videv/ffe/sleep/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -8955,10 +8083,6 @@ Time-Consumption & 1.815s\\ Received message with topic videv/ffe/sleep/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -8976,9 +8100,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:26,722\\ -Finished-Time: & 2023-02-09 15:57:27,934\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:13:55,579\\ +Finished-Time: & 2023-02-15 07:13:56,789\\ +Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -9024,7 +8148,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9032,17 +8156,13 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -9081,11 +8201,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/state and payload b'false' + Sending message with topic videv/ffe/sleep/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9104,10 +8220,6 @@ Time-Consumption & 1.212s\\ Received message with topic videv/ffe/sleep/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -9150,7 +8262,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffe/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9158,17 +8270,13 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffe/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffe/sleep/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -9207,11 +8315,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffe/sleep/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/state and payload b'false' + Sending message with topic videv/ffe/sleep/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9230,10 +8334,6 @@ Time-Consumption & 1.212s\\ Received message with topic videv/ffe/sleep/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffe/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -9266,9 +8366,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (101)\\ -Start-Time: & 2023-02-09 15:57:27,935\\ -Finished-Time: & 2023-02-09 15:57:28,844\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:13:56,790\\ +Finished-Time: & 2023-02-15 07:13:57,697\\ +Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -9291,11 +8391,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9303,15 +8399,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{"current_heating_setpoint": 23}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9319,19 +8411,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -9357,11 +8437,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/away_mode and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'true' + Sending message with topic videv/ffw/bath/heating_valve/away_mode/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9369,7 +8445,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9377,27 +8453,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -9438,11 +8498,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/away_mode and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'false' + Sending message with topic videv/ffw/bath/heating_valve/away_mode/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9450,7 +8506,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9458,27 +8514,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/bath/heating_valve/away_mode and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -9528,9 +8568,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (128)\\ -Start-Time: & 2023-02-09 15:57:28,845\\ -Finished-Time: & 2023-02-09 15:57:29,752\\ -Time-Consumption & 0.908s\\ +Start-Time: & 2023-02-15 07:13:57,698\\ +Finished-Time: & 2023-02-15 07:13:58,604\\ +Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -9551,11 +8591,7 @@ Time-Consumption & 0.908s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -9581,11 +8617,7 @@ Time-Consumption & 0.908s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/start_boost and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/start_boost and payload b'true' + Sending message with topic videv/ffw/bath/heating_valve/start_boost/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9593,15 +8625,11 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{"current_heating_setpoint": 30}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 30, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 30, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9609,19 +8637,7 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 30, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 30, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -9647,11 +8663,7 @@ Time-Consumption & 0.908s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9659,15 +8671,11 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{"current_heating_setpoint": 23}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9675,19 +8683,7 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -9722,9 +8718,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (50)\\ -Start-Time: & 2023-02-09 15:57:29,753\\ -Finished-Time: & 2023-02-09 15:57:30,359\\ -Time-Consumption & 0.606s\\ +Start-Time: & 2023-02-15 07:13:58,605\\ +Finished-Time: & 2023-02-15 07:13:59,209\\ +Time-Consumption & 0.604s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -9743,11 +8739,11 @@ Time-Consumption & 0.606s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9759,25 +8755,9 @@ Time-Consumption & 0.606s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'18' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -9801,11 +8781,7 @@ Time-Consumption & 0.606s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9813,15 +8789,11 @@ Time-Consumption & 0.606s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/ffw/bath/heating_valve/set and payload b'{"current_heating_setpoint": 23}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9829,19 +8801,7 @@ Time-Consumption & 0.606s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -9876,9 +8836,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (74)\\ -Start-Time: & 2023-02-09 15:57:30,359\\ -Finished-Time: & 2023-02-09 15:57:31,267\\ -Time-Consumption & 0.908s\\ +Start-Time: & 2023-02-15 07:13:59,210\\ +Finished-Time: & 2023-02-15 07:14:00,116\\ +Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -9901,11 +8861,7 @@ Time-Consumption & 0.908s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/ffw/bath/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -9931,11 +8887,7 @@ Time-Consumption & 0.908s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/summer_mode and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'true' + Sending message with topic videv/ffw/bath/heating_valve/summer_mode/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9943,7 +8895,7 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -9951,27 +8903,11 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -10012,11 +8948,7 @@ Time-Consumption & 0.908s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/summer_mode and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'false' + Sending message with topic videv/ffw/bath/heating_valve/summer_mode/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10024,7 +8956,7 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10032,27 +8964,11 @@ Time-Consumption & 0.908s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/bath/heating_valve/summer_mode and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -10102,9 +9018,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (22)\\ -Start-Time: & 2023-02-09 15:57:31,268\\ -Finished-Time: & 2023-02-09 15:57:32,480\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:14:00,116\\ +Finished-Time: & 2023-02-15 07:14:01,327\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -10131,11 +9047,11 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10147,25 +9063,9 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'18' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -10204,11 +9104,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload 23 - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23' + Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint/set and payload 23 \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10216,7 +9112,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10224,27 +9120,11 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -10285,11 +9165,11 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10301,25 +9181,9 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'18' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -10358,11 +9222,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload 23 - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23' + Sending message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint/set and payload 23 \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10370,7 +9230,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/ffw/bath/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10378,29 +9238,13 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/bath/heating_valve/user_temperature_setpoint and payload b'23' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/bath/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/bath/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -10448,9 +9292,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:32,481\\ -Finished-Time: & 2023-02-09 15:57:34,297\\ -Time-Consumption & 1.817s\\ +Start-Time: & 2023-02-15 07:14:01,327\\ +Finished-Time: & 2023-02-15 07:14:03,140\\ +Time-Consumption & 1.813s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -10483,7 +9327,7 @@ Time-Consumption & 1.817s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10491,7 +9335,7 @@ Time-Consumption & 1.817s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10499,23 +9343,11 @@ Time-Consumption & 1.817s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/julian/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -10541,19 +9373,15 @@ Time-Consumption & 1.817s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/julian/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -10594,33 +9422,25 @@ Time-Consumption & 1.817s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/julian/main_light/brightness and payload 50 + Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/julian/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/julian/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -10659,19 +9479,15 @@ Time-Consumption & 1.817s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/julian/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -10712,33 +9528,25 @@ Time-Consumption & 1.817s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/julian/main_light/brightness and payload 50 + Sending message with topic videv/ffw/julian/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/julian/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/julian/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -10773,10 +9581,6 @@ Time-Consumption & 1.817s\\ Received message with topic videv/ffw/julian/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -10794,9 +9598,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:34,298\\ -Finished-Time: & 2023-02-09 15:57:36,115\\ -Time-Consumption & 1.817s\\ +Start-Time: & 2023-02-15 07:14:03,141\\ +Finished-Time: & 2023-02-15 07:14:04,956\\ +Time-Consumption & 1.815s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -10829,7 +9633,7 @@ Time-Consumption & 1.817s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -10837,17 +9641,13 @@ Time-Consumption & 1.817s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/julian/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -10871,19 +9671,15 @@ Time-Consumption & 1.817s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -10924,33 +9720,25 @@ Time-Consumption & 1.817s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/julian/main_light/color_temp and payload 5 + Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/julian/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -10989,19 +9777,15 @@ Time-Consumption & 1.817s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/julian/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -11042,33 +9826,25 @@ Time-Consumption & 1.817s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/julian/main_light/color_temp and payload 5 + Sending message with topic videv/ffw/julian/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/julian/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -11103,10 +9879,6 @@ Time-Consumption & 1.817s\\ Received message with topic videv/ffw/julian/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -11124,9 +9896,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:36,116\\ -Finished-Time: & 2023-02-09 15:57:37,326\\ -Time-Consumption & 1.210s\\ +Start-Time: & 2023-02-15 07:14:04,956\\ +Finished-Time: & 2023-02-15 07:14:06,165\\ +Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -11172,7 +9944,7 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -11180,17 +9952,13 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/julian/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -11229,11 +9997,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/julian/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/state and payload b'false' + Sending message with topic videv/ffw/julian/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -11252,10 +10016,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffw/julian/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -11298,7 +10058,7 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/julian/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -11306,17 +10066,13 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/julian/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/julian/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -11355,11 +10111,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/julian/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/state and payload b'false' + Sending message with topic videv/ffw/julian/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -11378,10 +10130,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffw/julian/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/julian/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -11414,9 +10162,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:37,326\\ -Finished-Time: & 2023-02-09 15:57:39,139\\ -Time-Consumption & 1.813s\\ +Start-Time: & 2023-02-15 07:14:06,166\\ +Finished-Time: & 2023-02-15 07:14:07,980\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -11449,7 +10197,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -11457,7 +10205,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -11465,23 +10213,11 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -11507,19 +10243,15 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -11560,33 +10292,25 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/livingroom/main_light/brightness and payload 50 + Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -11625,19 +10349,15 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -11678,33 +10398,25 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/livingroom/main_light/brightness and payload 50 + Sending message with topic videv/ffw/livingroom/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -11739,10 +10451,6 @@ Time-Consumption & 1.813s\\ Received message with topic videv/ffw/livingroom/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -11760,9 +10468,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:39,140\\ -Finished-Time: & 2023-02-09 15:57:40,954\\ -Time-Consumption & 1.814s\\ +Start-Time: & 2023-02-15 07:14:07,980\\ +Finished-Time: & 2023-02-15 07:14:09,794\\ +Time-Consumption & 1.813s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -11795,7 +10503,7 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -11803,17 +10511,13 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/livingroom/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -11837,19 +10541,15 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -11890,33 +10590,25 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/livingroom/main_light/color_temp and payload 5 + Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -11955,19 +10647,15 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -12008,33 +10696,25 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/livingroom/main_light/color_temp and payload 5 + Sending message with topic videv/ffw/livingroom/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12069,10 +10749,6 @@ Time-Consumption & 1.814s\\ Received message with topic videv/ffw/livingroom/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -12090,8 +10766,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:40,955\\ -Finished-Time: & 2023-02-09 15:57:42,165\\ +Start-Time: & 2023-02-15 07:14:09,794\\ +Finished-Time: & 2023-02-15 07:14:11,003\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -12138,7 +10814,7 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12146,17 +10822,13 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/livingroom/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12195,11 +10867,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/livingroom/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/state and payload b'false' + Sending message with topic videv/ffw/livingroom/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12218,10 +10886,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffw/livingroom/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12264,7 +10928,7 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/livingroom/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12272,17 +10936,13 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/livingroom/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/livingroom/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12321,11 +10981,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/livingroom/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/state and payload b'false' + Sending message with topic videv/ffw/livingroom/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12344,10 +11000,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/ffw/livingroom/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/livingroom/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12380,8 +11032,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:42,165\\ -Finished-Time: & 2023-02-09 15:57:43,979\\ +Start-Time: & 2023-02-15 07:14:11,004\\ +Finished-Time: & 2023-02-15 07:14:12,817\\ Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -12415,7 +11067,7 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12423,7 +11075,7 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12431,15 +11083,7 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' + Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -12465,19 +11109,15 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' + Received message with topic videv/ffw/sleep/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -12518,33 +11158,25 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/sleep/main_light/brightness and payload 50 + Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/sleep/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/sleep/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12583,19 +11215,15 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' + Received message with topic videv/ffw/sleep/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -12636,33 +11264,25 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/sleep/main_light/brightness and payload 50 + Sending message with topic videv/ffw/sleep/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/sleep/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/sleep/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12697,10 +11317,6 @@ Time-Consumption & 1.814s\\ Received message with topic videv/ffw/sleep/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -12718,8 +11334,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:43,980\\ -Finished-Time: & 2023-02-09 15:57:45,191\\ +Start-Time: & 2023-02-15 07:14:12,818\\ +Finished-Time: & 2023-02-15 07:14:14,029\\ Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -12766,7 +11382,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12774,17 +11390,13 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/sleep/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12823,11 +11435,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/sleep/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/state and payload b'false' + Sending message with topic videv/ffw/sleep/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12846,10 +11454,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/ffw/sleep/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12892,7 +11496,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/ffw/sleep/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12900,17 +11504,13 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/ffw/sleep/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/ffw/sleep/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -12949,11 +11549,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/ffw/sleep/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/state and payload b'false' + Sending message with topic videv/ffw/sleep/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -12972,10 +11568,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/ffw/sleep/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/ffw/sleep/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13008,8 +11600,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:45,191\\ -Finished-Time: & 2023-02-09 15:57:46,401\\ +Start-Time: & 2023-02-15 07:14:14,030\\ +Finished-Time: & 2023-02-15 07:14:15,240\\ Time-Consumption & 1.210s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -13063,10 +11655,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13105,11 +11693,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/amplifier/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/state and payload b'false' + Sending message with topic videv/gfw/dirk/amplifier/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -13128,10 +11712,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13181,10 +11761,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13223,11 +11799,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/amplifier/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/state and payload b'false' + Sending message with topic videv/gfw/dirk/amplifier/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -13246,10 +11818,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13282,9 +11850,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:46,401\\ -Finished-Time: & 2023-02-09 15:57:47,613\\ -Time-Consumption & 1.211s\\ +Start-Time: & 2023-02-15 07:14:15,240\\ +Finished-Time: & 2023-02-15 07:14:16,448\\ +Time-Consumption & 1.207s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -13346,10 +11914,6 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -13357,10 +11921,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13399,11 +11959,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/cd_player/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/cd_player/state and payload b'false' + Sending message with topic videv/gfw/dirk/cd_player/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -13431,10 +11987,6 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -13442,10 +11994,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13504,10 +12052,6 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -13515,10 +12059,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13557,11 +12097,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/cd_player/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/cd_player/state and payload b'false' + Sending message with topic videv/gfw/dirk/cd_player/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -13589,10 +12125,6 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -13600,10 +12132,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13636,8 +12164,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (24)\\ -Start-Time: & 2023-02-09 15:57:47,613\\ -Finished-Time: & 2023-02-09 15:57:48,519\\ +Start-Time: & 2023-02-15 07:14:16,448\\ +Finished-Time: & 2023-02-15 07:14:17,354\\ Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -13685,10 +12213,6 @@ Time-Consumption & 0.906s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -13696,10 +12220,6 @@ Time-Consumption & 0.906s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13743,10 +12263,6 @@ Time-Consumption & 0.906s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/cd_player/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic my_apps/gfw/dirk/powerplug/output/1 and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -13754,10 +12270,6 @@ Time-Consumption & 0.906s\\ Received message with topic videv/gfw/dirk/amplifier/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/amplifier/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -13790,8 +12302,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:48,520\\ -Finished-Time: & 2023-02-09 15:57:50,334\\ +Start-Time: & 2023-02-15 07:14:17,354\\ +Finished-Time: & 2023-02-15 07:14:19,168\\ Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -13825,7 +12337,7 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -13833,7 +12345,7 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -13841,23 +12353,11 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -13883,19 +12383,15 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -13936,33 +12432,25 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/desk_light/brightness and payload 50 + Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -14001,19 +12489,15 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -14054,33 +12538,25 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/desk_light/brightness and payload 50 + Sending message with topic videv/gfw/dirk/desk_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -14115,10 +12591,6 @@ Time-Consumption & 1.814s\\ Received message with topic videv/gfw/dirk/desk_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -14136,8 +12608,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:50,334\\ -Finished-Time: & 2023-02-09 15:57:52,148\\ +Start-Time: & 2023-02-15 07:14:19,169\\ +Finished-Time: & 2023-02-15 07:14:20,983\\ Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -14171,7 +12643,7 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14179,17 +12651,13 @@ Time-Consumption & 1.814s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/desk_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -14213,19 +12681,15 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -14266,33 +12730,25 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/desk_light/color_temp and payload 5 + Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -14331,19 +12787,15 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -14384,33 +12836,25 @@ Time-Consumption & 1.814s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/desk_light/color_temp and payload 5 + Sending message with topic videv/gfw/dirk/desk_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -14445,10 +12889,6 @@ Time-Consumption & 1.814s\\ Received message with topic videv/gfw/dirk/desk_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -14466,8 +12906,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:57:52,149\\ -Finished-Time: & 2023-02-09 15:57:53,360\\ +Start-Time: & 2023-02-15 07:14:20,984\\ +Finished-Time: & 2023-02-15 07:14:22,195\\ Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -14514,7 +12954,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14522,17 +12962,13 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/desk_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -14571,11 +13007,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/desk_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/state and payload b'false' + Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14594,10 +13026,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/gfw/dirk/desk_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -14640,7 +13068,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/desk_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14648,17 +13076,13 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/desk_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/desk_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -14697,11 +13121,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/desk_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/state and payload b'false' + Sending message with topic videv/gfw/dirk/desk_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14720,10 +13140,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/gfw/dirk/desk_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/desk_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -14756,8 +13172,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (101)\\ -Start-Time: & 2023-02-09 15:57:53,361\\ -Finished-Time: & 2023-02-09 15:57:54,268\\ +Start-Time: & 2023-02-15 07:14:22,196\\ +Finished-Time: & 2023-02-15 07:14:23,102\\ Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -14781,11 +13197,7 @@ Time-Consumption & 0.907s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14793,15 +13205,11 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{"current_heating_setpoint": 25}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14809,19 +13217,7 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -14847,11 +13243,7 @@ Time-Consumption & 0.907s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/away_mode and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'true' + Sending message with topic videv/gfw/dirk/heating_valve/away_mode/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14859,7 +13251,7 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 20, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 20, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14867,27 +13259,11 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 20, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 20, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -14928,11 +13304,7 @@ Time-Consumption & 0.907s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/away_mode and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'false' + Sending message with topic videv/gfw/dirk/heating_valve/away_mode/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14940,7 +13312,7 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -14948,27 +13320,11 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/heating_valve/away_mode and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -15018,16 +13374,16 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (128)\\ -Start-Time: & 2023-02-09 15:57:54,269\\ -Finished-Time: & 2023-02-09 15:57:55,176\\ -Time-Consumption & 0.907s\\ +Start-Time: & 2023-02-15 07:14:23,103\\ +Finished-Time: & 2023-02-15 07:14:24,009\\ +Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule \bf{\,Info } & Setting preconditions (Default setpoint)\\ \bf{\,\textcolor{green}{Success} } & Boost timer is correct (Content 0 and Type is $<$class 'int'$>$).\\ \bf{\,Info } & Activating boost mode\\ -\bf{\,\textcolor{green}{Success} } & Boost timer is greater expectation (Content 900 and Type is $<$class 'int'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Boost timer is greater expectation (Content 899 and Type is $<$class 'int'$>$).\\ \bf{\,Info } & Setting postconditions (Default setpoint)\\ \bf{\,\textcolor{green}{Success} } & Boost timer is correct (Content 0 and Type is $<$class 'int'$>$).\\ \bottomrule @@ -15041,11 +13397,7 @@ Time-Consumption & 0.907s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -15071,11 +13423,7 @@ Time-Consumption & 0.907s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/start_boost and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/start_boost and payload b'true' + Sending message with topic videv/gfw/dirk/heating_valve/start_boost/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15083,15 +13431,11 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{"current_heating_setpoint": 30}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 30, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 30, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15099,30 +13443,22 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 30, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 30, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic videv/gfw/dirk/heating_valve/boost_timer and payload b'899' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} \toprule - {\bf \textcolor{green}{Success} } & Boost timer is greater expectation (Content 900 and Type is $<$class 'int'$>$).\\ + {\bf \textcolor{green}{Success} } & Boost timer is greater expectation (Content 899 and Type is $<$class 'int'$>$).\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Boost timer): 900 () + Result (Boost timer): 899 () \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15137,11 +13473,7 @@ Time-Consumption & 0.907s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15149,15 +13481,11 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{"current_heating_setpoint": 25}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15165,19 +13493,7 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -15212,9 +13528,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (50)\\ -Start-Time: & 2023-02-09 15:57:55,176\\ -Finished-Time: & 2023-02-09 15:57:55,781\\ -Time-Consumption & 0.605s\\ +Start-Time: & 2023-02-15 07:14:24,010\\ +Finished-Time: & 2023-02-15 07:14:24,613\\ +Time-Consumption & 0.603s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -15233,11 +13549,11 @@ Time-Consumption & 0.605s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 20, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 20, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 20, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 20, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15249,25 +13565,9 @@ Time-Consumption & 0.605s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -15291,11 +13591,7 @@ Time-Consumption & 0.605s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15303,15 +13599,11 @@ Time-Consumption & 0.605s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/gfw/dirk/heating_valve/set and payload b'{"current_heating_setpoint": 25}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15319,19 +13611,7 @@ Time-Consumption & 0.605s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -15366,8 +13646,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (74)\\ -Start-Time: & 2023-02-09 15:57:55,782\\ -Finished-Time: & 2023-02-09 15:57:56,689\\ +Start-Time: & 2023-02-15 07:14:24,613\\ +Finished-Time: & 2023-02-15 07:14:25,520\\ Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -15391,11 +13671,7 @@ Time-Consumption & 0.907s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/dirk/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -15421,11 +13697,7 @@ Time-Consumption & 0.907s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/summer_mode and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'true' + Sending message with topic videv/gfw/dirk/heating_valve/summer_mode/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15433,7 +13705,7 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15441,27 +13713,11 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -15502,11 +13758,7 @@ Time-Consumption & 0.907s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/summer_mode and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'false' + Sending message with topic videv/gfw/dirk/heating_valve/summer_mode/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15514,7 +13766,7 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15522,27 +13774,11 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/heating_valve/summer_mode and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -15592,9 +13828,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (22)\\ -Start-Time: & 2023-02-09 15:57:56,690\\ -Finished-Time: & 2023-02-09 15:57:57,899\\ -Time-Consumption & 1.210s\\ +Start-Time: & 2023-02-15 07:14:25,521\\ +Finished-Time: & 2023-02-15 07:14:26,730\\ +Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -15621,11 +13857,11 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 20, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 20, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 20, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 20, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15637,25 +13873,9 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -15694,11 +13914,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload 25 - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25' + Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint/set and payload 25 \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15706,7 +13922,7 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15714,29 +13930,13 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -15775,11 +13975,11 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 20, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 20, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 20, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 20, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15791,25 +13991,9 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'20' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -15848,11 +14032,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload 25 - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25' + Sending message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint/set and payload 25 \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15860,7 +14040,7 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/dirk/heating_valve and payload {"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15868,27 +14048,11 @@ Time-Consumption & 1.210s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/heating_valve/user_temperature_setpoint and payload b'25' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/dirk/heating_valve and payload b'{"current_heating_setpoint": 25, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -15938,9 +14102,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:57:57,900\\ -Finished-Time: & 2023-02-09 15:57:59,715\\ -Time-Consumption & 1.816s\\ +Start-Time: & 2023-02-15 07:14:26,730\\ +Finished-Time: & 2023-02-15 07:14:28,545\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -15973,7 +14137,7 @@ Time-Consumption & 1.816s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15981,7 +14145,7 @@ Time-Consumption & 1.816s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -15989,23 +14153,11 @@ Time-Consumption & 1.816s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -16031,19 +14183,15 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -16084,33 +14232,25 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/main_light/brightness and payload 50 + Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -16149,19 +14289,15 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -16202,33 +14338,25 @@ Time-Consumption & 1.816s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/main_light/brightness and payload 50 + Sending message with topic videv/gfw/dirk/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -16263,10 +14391,6 @@ Time-Consumption & 1.816s\\ Received message with topic videv/gfw/dirk/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -16284,9 +14408,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:57:59,716\\ -Finished-Time: & 2023-02-09 15:58:01,529\\ -Time-Consumption & 1.813s\\ +Start-Time: & 2023-02-15 07:14:28,545\\ +Finished-Time: & 2023-02-15 07:14:30,359\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -16319,7 +14443,7 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -16327,17 +14451,13 @@ Time-Consumption & 1.813s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -16361,19 +14481,15 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -16414,33 +14530,25 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/main_light/color_temp and payload 5 + Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -16479,19 +14587,15 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -16532,33 +14636,25 @@ Time-Consumption & 1.813s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/main_light/color_temp and payload 5 + Sending message with topic videv/gfw/dirk/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -16593,10 +14689,6 @@ Time-Consumption & 1.813s\\ Received message with topic videv/gfw/dirk/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -16614,9 +14706,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:01,530\\ -Finished-Time: & 2023-02-09 15:58:02,741\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:14:30,360\\ +Finished-Time: & 2023-02-15 07:14:31,571\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -16662,7 +14754,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -16670,17 +14762,13 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -16719,11 +14807,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/state and payload b'false' + Sending message with topic videv/gfw/dirk/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -16742,10 +14826,6 @@ Time-Consumption & 1.212s\\ Received message with topic videv/gfw/dirk/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -16788,7 +14868,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/dirk/main_light and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -16796,17 +14876,13 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/dirk/main_light and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/dirk/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -16845,11 +14921,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/state and payload b'false' + Sending message with topic videv/gfw/dirk/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -16868,10 +14940,6 @@ Time-Consumption & 1.212s\\ Received message with topic videv/gfw/dirk/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -16904,9 +14972,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:02,742\\ -Finished-Time: & 2023-02-09 15:58:03,952\\ -Time-Consumption & 1.210s\\ +Start-Time: & 2023-02-15 07:14:31,571\\ +Finished-Time: & 2023-02-15 07:14:32,782\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -16959,10 +15027,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/pc_dock/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -17001,11 +15065,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/pc_dock/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false' + Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -17024,10 +15084,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/pc_dock/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -17077,10 +15133,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/gfw/dirk/pc_dock/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/pc_dock/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -17119,11 +15171,7 @@ Time-Consumption & 1.210s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/dirk/pc_dock/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false' + Sending message with topic videv/gfw/dirk/pc_dock/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -17142,10 +15190,6 @@ Time-Consumption & 1.210s\\ Received message with topic videv/gfw/dirk/pc_dock/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/dirk/pc_dock/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -17178,9 +15222,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (50)\\ -Start-Time: & 2023-02-09 15:58:03,953\\ -Finished-Time: & 2023-02-09 15:58:05,768\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:14:32,783\\ +Finished-Time: & 2023-02-15 07:14:34,596\\ +Time-Consumption & 1.814s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -17221,7 +15265,7 @@ Time-Consumption & 1.815s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -17229,7 +15273,7 @@ Time-Consumption & 1.815s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -17237,31 +15281,19 @@ Time-Consumption & 1.815s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic videv/gfw/floor/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -17287,19 +15319,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/floor/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -17340,37 +15368,29 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/brightness and payload 50 + Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/floor/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -17409,19 +15429,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 165.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 165.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/brightness and payload b'65.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/floor/main_light/brightness and payload b'65' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -17462,37 +15478,29 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/brightness and payload 50 + Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/floor/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -17527,10 +15535,6 @@ Time-Consumption & 1.815s\\ Received message with topic videv/gfw/floor/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -17548,9 +15552,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (81)\\ -Start-Time: & 2023-02-09 15:58:05,768\\ -Finished-Time: & 2023-02-09 15:58:07,583\\ -Time-Consumption & 1.815s\\ +Start-Time: & 2023-02-15 07:14:34,597\\ +Finished-Time: & 2023-02-15 07:14:36,410\\ +Time-Consumption & 1.813s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -17591,7 +15595,7 @@ Time-Consumption & 1.815s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -17599,7 +15603,7 @@ Time-Consumption & 1.815s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -17607,15 +15611,11 @@ Time-Consumption & 1.815s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -17641,19 +15641,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -17694,37 +15690,29 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/color_temp and payload 5 + Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -17763,19 +15751,15 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 413.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 413.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic videv/gfw/floor/main_light/color_temp and payload b'8' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -17816,37 +15800,29 @@ Time-Consumption & 1.815s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/color_temp and payload 5 + Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -17881,10 +15857,6 @@ Time-Consumption & 1.815s\\ Received message with topic videv/gfw/floor/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -17902,8 +15874,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:07,584\\ -Finished-Time: & 2023-02-09 15:58:08,795\\ +Start-Time: & 2023-02-15 07:14:36,411\\ +Finished-Time: & 2023-02-15 07:14:37,621\\ Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -17958,7 +15930,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -17966,7 +15938,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -17974,15 +15946,11 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -18023,11 +15991,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/state and payload b'false' + Sending message with topic videv/gfw/floor/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18046,10 +16010,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/gfw/floor/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -18100,7 +16060,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18108,7 +16068,7 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18116,15 +16076,11 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -18165,11 +16121,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/state and payload b'false' + Sending message with topic videv/gfw/floor/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18188,10 +16140,6 @@ Time-Consumption & 1.211s\\ Received message with topic videv/gfw/floor/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -18224,9 +16172,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (42)\\ -Start-Time: & 2023-02-09 15:58:08,795\\ -Finished-Time: & 2023-02-09 15:58:10,004\\ -Time-Consumption & 1.208s\\ +Start-Time: & 2023-02-15 07:14:37,622\\ +Finished-Time: & 2023-02-15 07:14:38,830\\ +Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -18261,7 +16209,7 @@ Time-Consumption & 1.208s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18269,7 +16217,7 @@ Time-Consumption & 1.208s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18277,15 +16225,11 @@ Time-Consumption & 1.208s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -18296,45 +16240,37 @@ Time-Consumption & 1.208s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/brightness and payload 35 + Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 35 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"brightness": 90}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"brightness": 90}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/floor/main_light/brightness and payload b'35' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"brightness": 90.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"brightness": 90.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 90.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/brightness and payload b'35.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -18373,45 +16309,37 @@ Time-Consumption & 1.208s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/brightness and payload 50 + Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 50 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"brightness": 128}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/floor/main_light/brightness and payload b'50' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"brightness": 128.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/brightness and payload b'50.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -18461,10 +16389,6 @@ Time-Consumption & 1.208s\\ Received message with topic videv/gfw/floor/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -18482,8 +16406,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (67)\\ -Start-Time: & 2023-02-09 15:58:10,004\\ -Finished-Time: & 2023-02-09 15:58:11,214\\ +Start-Time: & 2023-02-15 07:14:38,831\\ +Finished-Time: & 2023-02-15 07:14:40,040\\ Time-Consumption & 1.209s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -18519,7 +16443,7 @@ Time-Consumption & 1.209s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18527,7 +16451,7 @@ Time-Consumption & 1.209s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18535,15 +16459,11 @@ Time-Consumption & 1.209s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -18554,45 +16474,37 @@ Time-Consumption & 1.209s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/color_temp and payload 2 + Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 2 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"color_temp": 291}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"color_temp": 291}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/floor/main_light/color_temp and payload b'2' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"color_temp": 291.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"color_temp": 291.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 291.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/color_temp and payload b'2.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -18631,45 +16543,37 @@ Time-Consumption & 1.209s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/floor/main_light/color_temp and payload 5 + Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 5 + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"color_temp": 352}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2/set and payload b'{"color_temp": 352.0}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/color_temp and payload b'5.0' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -18719,10 +16623,6 @@ Time-Consumption & 1.209s\\ Received message with topic videv/gfw/floor/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} @@ -18740,8 +16640,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak synchronisation.py (24)\\ -Start-Time: & 2023-02-09 15:58:11,214\\ -Finished-Time: & 2023-02-09 15:58:12,121\\ +Start-Time: & 2023-02-15 07:14:40,040\\ +Finished-Time: & 2023-02-15 07:14:40,947\\ Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -18783,7 +16683,7 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_1 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18791,7 +16691,7 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"} + Sending message with topic zigbee/gfw/floor/main_light_2 and payload {"state": "on", "brightness": 127.0, "color_temp": 352.0} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18799,15 +16699,11 @@ Time-Consumption & 0.907s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' + Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_1 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0, "__type__": "tradfri_light"}' + Received message with topic zigbee/gfw/floor/main_light_2 and payload b'{"state": "on", "brightness": 127.0, "color_temp": 352.0}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -18859,10 +16755,6 @@ Time-Consumption & 0.907s\\ Received message with topic videv/gfw/floor/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/floor/main_light/__info__ and payload b'{"__type__": "videv_switch_brightness_color_temp", "state": {"control": true, "display": true}, "brightness": {"control": true, "display": true}, "color_temp": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -18910,9 +16802,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (101)\\ -Start-Time: & 2023-02-09 15:58:12,122\\ -Finished-Time: & 2023-02-09 15:58:13,031\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:14:40,948\\ +Finished-Time: & 2023-02-15 07:14:41,855\\ +Time-Consumption & 0.908s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -18935,11 +16827,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18947,15 +16835,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{"current_heating_setpoint": 23}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -18963,19 +16847,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -19001,11 +16873,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/away_mode and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'true' + Sending message with topic videv/gfw/marion/heating_valve/away_mode/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19013,7 +16881,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19021,29 +16889,13 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -19082,11 +16934,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/away_mode and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'false' + Sending message with topic videv/gfw/marion/heating_valve/away_mode/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19094,7 +16942,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19102,27 +16950,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/marion/heating_valve/away_mode and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -19172,16 +17004,16 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (128)\\ -Start-Time: & 2023-02-09 15:58:13,031\\ -Finished-Time: & 2023-02-09 15:58:13,940\\ -Time-Consumption & 0.909s\\ +Start-Time: & 2023-02-15 07:14:41,856\\ +Finished-Time: & 2023-02-15 07:14:42,762\\ +Time-Consumption & 0.906s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule \bf{\,Info } & Setting preconditions (Default setpoint)\\ \bf{\,\textcolor{green}{Success} } & Boost timer is correct (Content 0 and Type is $<$class 'int'$>$).\\ \bf{\,Info } & Activating boost mode\\ -\bf{\,\textcolor{green}{Success} } & Boost timer is greater expectation (Content 899 and Type is $<$class 'int'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Boost timer is greater expectation (Content 900 and Type is $<$class 'int'$>$).\\ \bf{\,Info } & Setting postconditions (Default setpoint)\\ \bf{\,\textcolor{green}{Success} } & Boost timer is correct (Content 0 and Type is $<$class 'int'$>$).\\ \bottomrule @@ -19195,11 +17027,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -19225,11 +17053,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/start_boost and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/start_boost and payload b'true' + Sending message with topic videv/gfw/marion/heating_valve/start_boost/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19237,15 +17061,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{"current_heating_setpoint": 30}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 30, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 30, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19253,38 +17073,18 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 30, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/boost_timer and payload b'899' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 30, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} \toprule - {\bf \textcolor{green}{Success} } & Boost timer is greater expectation (Content 899 and Type is $<$class 'int'$>$).\\ + {\bf \textcolor{green}{Success} } & Boost timer is greater expectation (Content 900 and Type is $<$class 'int'$>$).\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Boost timer): 899 () + Result (Boost timer): 900 () \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19299,11 +17099,7 @@ Time-Consumption & 0.909s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19311,15 +17107,11 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{"current_heating_setpoint": 23}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19327,19 +17119,7 @@ Time-Consumption & 0.909s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -19374,9 +17154,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (50)\\ -Start-Time: & 2023-02-09 15:58:13,940\\ -Finished-Time: & 2023-02-09 15:58:14,545\\ -Time-Consumption & 0.605s\\ +Start-Time: & 2023-02-15 07:14:42,763\\ +Finished-Time: & 2023-02-15 07:14:43,367\\ +Time-Consumption & 0.604s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -19395,11 +17175,11 @@ Time-Consumption & 0.605s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19411,25 +17191,9 @@ Time-Consumption & 0.605s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'18' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -19453,11 +17217,7 @@ Time-Consumption & 0.605s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19465,15 +17225,11 @@ Time-Consumption & 0.605s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic zigbee/gfw/marion/heating_valve/set and payload b'{"current_heating_setpoint": 23}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19481,19 +17237,7 @@ Time-Consumption & 0.605s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -19528,9 +17272,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (74)\\ -Start-Time: & 2023-02-09 15:58:14,546\\ -Finished-Time: & 2023-02-09 15:58:15,455\\ -Time-Consumption & 0.910s\\ +Start-Time: & 2023-02-15 07:14:43,368\\ +Finished-Time: & 2023-02-15 07:14:44,275\\ +Time-Consumption & 0.907s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -19553,11 +17297,7 @@ Time-Consumption & 0.910s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/set_default_temperature and payload b'true' + Sending message with topic videv/gfw/marion/heating_valve/set_default_temperature/set and payload null \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -19583,11 +17323,7 @@ Time-Consumption & 0.910s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/summer_mode and payload true - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'true' + Sending message with topic videv/gfw/marion/heating_valve/summer_mode/set and payload true \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19595,7 +17331,7 @@ Time-Consumption & 0.910s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 5, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19603,29 +17339,13 @@ Time-Consumption & 0.910s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 5, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 5, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -19664,11 +17384,7 @@ Time-Consumption & 0.910s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/summer_mode and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'false' + Sending message with topic videv/gfw/marion/heating_valve/summer_mode/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19676,7 +17392,7 @@ Time-Consumption & 0.910s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19684,27 +17400,11 @@ Time-Consumption & 0.910s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/marion/heating_valve/summer_mode and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -19754,9 +17454,9 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak heating.py (22)\\ -Start-Time: & 2023-02-09 15:58:15,456\\ -Finished-Time: & 2023-02-09 15:58:16,668\\ -Time-Consumption & 1.212s\\ +Start-Time: & 2023-02-15 07:14:44,275\\ +Finished-Time: & 2023-02-15 07:14:45,486\\ +Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ \midrule @@ -19783,11 +17483,11 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19799,25 +17499,9 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'18' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -19856,11 +17540,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload 23 - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23' + Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint/set and payload 23 \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19868,7 +17548,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19876,27 +17556,11 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -19937,11 +17601,11 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 18, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -19953,25 +17617,9 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'18' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -20010,11 +17658,7 @@ Time-Consumption & 1.212s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload 23 - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23' + Sending message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint/set and payload 23 \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -20022,7 +17666,7 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"} + Sending message with topic zigbee/gfw/marion/heating_valve and payload {"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97} \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -20030,27 +17674,11 @@ Time-Consumption & 1.212s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/gfw/marion/heating_valve/user_temperature_setpoint and payload b'23' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "__type__": "brennenstuhl_heating_valve"}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/temperature and payload b'20.7' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/heating_valve/__info__ and payload b'{"__type__": "videv_heating", "user_temperature_setpoint": {"control": true, "display": true}, "away_mode": {"control": true, "display": true}, "summer_mode": {"control": true, "display": true}, "start_boost": {"control": true}, "set_default_temperature": {"control": true}, "valve_temperature_setpoint": {"display": true}, "boost_timer": {"display": true}, "temperature": {"display": true}}' + Received message with topic zigbee/gfw/marion/heating_valve and payload b'{"current_heating_setpoint": 23, "local_temperature": 20.7, "battery": 97}' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -20100,282 +17728,8 @@ This test was passed with the state: {\bf \textcolor{green}{Success}}. \begin{longtabu} to \linewidth {lX} \toprule Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:16,668\\ -Finished-Time: & 2023-02-09 15:58:17,881\\ -Time-Consumption & 1.213s\\ -\midrule -\multicolumn{2}{l}{\bf{Testresults:}}\\ -\midrule -\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ -\bf{\,Info } & Changing switching device state to 'True'\\ -\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ -\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ -\bf{\,Info } & Changing virtual device state to 'False'\\ -\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ -\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ -\bf{\,Info } & Changing switching device state to 'True'\\ -\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ -\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ -\bf{\,Info } & Changing virtual device state to 'False'\\ -\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ -\bottomrule -\end{longtabu} - - -\paragraph{Testdetails}\mbox{}\\ - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Virtual device state): False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Virtual device state): result = False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf Info } & Changing switching device state to 'True'\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/state and payload b'true' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Virtual device state): True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Virtual device state): result = True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Switching device state): True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Switching device state): result = True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf Info } & Changing virtual device state to 'False'\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'off' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Switching device state): False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Switching device state): result = False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Virtual device state): False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Virtual device state): result = False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf Info } & Changing switching device state to 'True'\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/state and payload b'true' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Virtual device state): True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Virtual device state): result = True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Switching device state): True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Switching device state): result = True () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf Info } & Changing virtual device state to 'False'\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/gfw/marion/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'off' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/state and payload b'false' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/gfw/marion/main_light/__info__ and payload b'{"__type__": "videv_switching", "state": {"control": true, "display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - \begin{tabu} to \linewidth {lX} - \toprule - {\bf \textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ - \bottomrule - \end{tabu} - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Result (Switching device state): False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Expectation (Switching device state): result = False () - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - - \vspace*{2.5ex} - - - - - - - - \subsection{ Power On/\allowbreak Off test for device and virtual device: shellies/\allowbreak stw/\allowbreak stairway/\allowbreak main\_light } - - -\paragraph{Testsummary}\mbox{}\\ -This test was passed with the state: {\bf \textcolor{green}{Success}}. -\begin{longtabu} to \linewidth {lX} -\toprule -Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ -Start-Time: & 2023-02-09 15:58:17,882\\ -Finished-Time: & 2023-02-09 15:58:19,093\\ +Start-Time: & 2023-02-15 07:14:45,487\\ +Finished-Time: & 2023-02-15 07:14:46,698\\ Time-Consumption & 1.211s\\ \midrule \multicolumn{2}{l}{\bf{Testresults:}}\\ @@ -20418,27 +17772,15 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic shellies/stw/stairway/main_light/relay/0 and payload on + Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic shellies/stw/stairway/main_light/relay/0 and payload b'on' + Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/timer and payload b'100' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{"__type__": "videv_switching_motion", "state": {"control": true, "display": true}, "timer": {"display": true}, "motion_0": {"display": true}, "motion_1": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/state and payload b'true' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{"__type__": "videv_switching_motion", "state": {"control": true, "display": true}, "timer": {"display": true}, "motion_0": {"display": true}, "motion_1": {"display": true}}' + Received message with topic videv/gfw/marion/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] @@ -20479,11 +17821,261 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/stw/stairway/main_light/state and payload false + Sending message with topic videv/gfw/marion/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/state and payload b'false' + Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'off' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/gfw/marion/main_light/state and payload b'false' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Switching device state): False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Switching device state): result = False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Virtual device state): False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Virtual device state): result = False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf Info } & Changing switching device state to 'True'\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload on + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'on' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/gfw/marion/main_light/state and payload b'true' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Virtual device state): True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Virtual device state): result = True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Switching device state): True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Switching device state): result = True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf Info } & Changing virtual device state to 'False'\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic videv/gfw/marion/main_light/state/set and payload false + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic shellies/gfw/marion/main_light/relay/0/command and payload b'off' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic shellies/gfw/marion/main_light/relay/0 and payload off + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic shellies/gfw/marion/main_light/relay/0 and payload b'off' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/gfw/marion/main_light/state and payload b'false' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Switching device state): False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Switching device state): result = False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + + + + + + + + \subsection{ Power On/\allowbreak Off test for device and virtual device: shellies/\allowbreak stw/\allowbreak stairway/\allowbreak main\_light } + + +\paragraph{Testsummary}\mbox{}\\ +This test was passed with the state: {\bf \textcolor{green}{Success}}. +\begin{longtabu} to \linewidth {lX} +\toprule +Caller: & /\allowbreak home/\allowbreak dirk/\allowbreak my\_repositories/\allowbreak smarthome/\allowbreak smart\_brain\_test/\allowbreak tests/\allowbreak light.py (27)\\ +Start-Time: & 2023-02-15 07:14:46,698\\ +Finished-Time: & 2023-02-15 07:14:47,909\\ +Time-Consumption & 1.210s\\ +\midrule +\multicolumn{2}{l}{\bf{Testresults:}}\\ +\midrule +\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ +\bf{\,Info } & Changing switching device state to 'True'\\ +\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ +\bf{\,Info } & Changing virtual device state to 'False'\\ +\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ +\bf{\,Info } & Changing switching device state to 'True'\\ +\bf{\,\textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ +\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ +\bf{\,Info } & Changing virtual device state to 'False'\\ +\bf{\,\textcolor{green}{Success} } & Switching device state is correct (Content False and Type is $<$class 'bool'$>$).\\ +\bottomrule +\end{longtabu} + + +\paragraph{Testdetails}\mbox{}\\ + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content False and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Virtual device state): False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Virtual device state): result = False () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf Info } & Changing switching device state to 'True'\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic shellies/stw/stairway/main_light/relay/0 and payload on + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic shellies/stw/stairway/main_light/relay/0 and payload b'on' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/stw/stairway/main_light/timer and payload b'100' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Received message with topic videv/stw/stairway/main_light/state and payload b'true' + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Virtual device state is correct (Content True and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Virtual device state): True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Virtual device state): result = True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf \textcolor{green}{Success} } & Switching device state is correct (Content True and Type is $<$class 'bool'$>$).\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Result (Switching device state): True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Expectation (Switching device state): result = True () + \end{modulelog} + \vspace*{-0.225cm}\pagebreak[1] + + \vspace*{2.5ex} + \begin{tabu} to \linewidth {lX} + \toprule + {\bf Info } & Changing virtual device state to 'False'\\ + \bottomrule + \end{tabu} + \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] + Sending message with topic videv/stw/stairway/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -20507,17 +18099,9 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{"__type__": "videv_switching_motion", "state": {"control": true, "display": true}, "timer": {"display": true}, "motion_0": {"display": true}, "motion_1": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/stw/stairway/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{"__type__": "videv_switching_motion", "state": {"control": true, "display": true}, "timer": {"display": true}, "motion_0": {"display": true}, "motion_1": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -20568,25 +18152,9 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{"__type__": "videv_switching_motion", "state": {"control": true, "display": true}, "timer": {"display": true}, "motion_0": {"display": true}, "motion_1": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/stw/stairway/main_light/state and payload b'true' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{"__type__": "videv_switching_motion", "state": {"control": true, "display": true}, "timer": {"display": true}, "motion_0": {"display": true}, "motion_1": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/timer and payload b'99' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{"__type__": "videv_switching_motion", "state": {"control": true, "display": true}, "timer": {"display": true}, "motion_0": {"display": true}, "motion_1": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} @@ -20625,11 +18193,7 @@ Time-Consumption & 1.211s\\ \bottomrule \end{tabu} \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Sending message with topic videv/stw/stairway/main_light/state and payload false - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/state and payload b'false' + Sending message with topic videv/stw/stairway/main_light/state/set and payload false \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] @@ -20653,17 +18217,9 @@ Time-Consumption & 1.211s\\ \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{"__type__": "videv_switching_motion", "state": {"control": true, "display": true}, "timer": {"display": true}, "motion_0": {"display": true}, "motion_1": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] Received message with topic videv/stw/stairway/main_light/state and payload b'false' \end{modulelog} \vspace*{-0.225cm}\pagebreak[1] - \definecolor{shadecolor}{rgb}{ 0.8 0.8 0.8 }\begin{modulelog}[breaklines=true, breakanywhere=true] - Received message with topic videv/stw/stairway/main_light/__info__ and payload b'{"__type__": "videv_switching_motion", "state": {"control": true, "display": true}, "timer": {"display": true}, "motion_0": {"display": true}, "motion_1": {"display": true}}' - \end{modulelog} - \vspace*{-0.225cm}\pagebreak[1] \vspace*{2.5ex} \begin{tabu} to \linewidth {lX} diff --git a/tests/heating.py b/tests/heating.py index 26f6e78..202c0bc 100644 --- a/tests/heating.py +++ b/tests/heating.py @@ -135,12 +135,12 @@ class testcase_heating(testcase): vtemp = self.__valve__.get(self.__valve__.KEY_TEMPERATURE_SETPOINT) equivalency_chk(self.__videv__.get(self.__videv__.KEY_BOOST_TIMER), 0, tLogger, "Boost timer") - self.__videv__.set(self.__videv__.KEY_START_BOOST, None) + self.__videv__.set(self.__videv__.KEY_START_BOOST, True) time.sleep(DT_TOGGLE) tLogger.debug("Activating boost mode") greater_chk(self.__videv__.get(self.__videv__.KEY_BOOST_TIMER), 0, tLogger, "Boost timer") - self.__videv__.set(self.__videv__.KEY_SET_DEFAULT_TEMPERATURE, None) + self.__videv__.set(self.__videv__.KEY_SET_DEFAULT_TEMPERATURE, True) time.sleep(DT_TOGGLE) tLogger.debug("Setting postconditions (Default setpoint)") equivalency_chk(self.__videv__.get(self.__videv__.KEY_BOOST_TIMER), 0, tLogger, "Boost timer")